From a77ecc3a30a50259619239e8f8af9d1ee22f00ce Mon Sep 17 00:00:00 2001 From: Samir Faci Date: Mon, 7 Oct 2024 12:54:15 -0400 Subject: [PATCH] Addressing code review comments --- tests/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 8d40346..43a8d66 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -6,7 +6,9 @@ setup: checkout-testdata docker-compose-up checkout-testdata: git submodule init git submodule update -# cd ./testdata && git fetch && git checkout master && git pull +# +checkout-latest-testdata: checkout-testdata + cd ./testdata && git fetch && git checkout master && git pull # docker-compose-up will download docker image for each of the databases listed in docker-compose.yaml file, and then it will initialize # database with testdata retrieved in previous step.