Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-08-25 13:04:31 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-08-25 13:57:25 +0300
commitc43df95c5cd28f6f74543aede4a67dbb99f66120 (patch)
treeba8f96bbe54e9cd2de1bb40567417dfcd9cd4263 /Makefile
parent445fd4dc795d4cf4d030490372baa722b49e1e5f (diff)
Makefile: Do not build Praefect binary for tests anymore
Now that we build Praefect binaries ad-hoc, there is no need for building them in our Makefile anymore. This commit thus drops the prerequisite and renames the now-misnamed "GITALY_TEST_PRAEFECT_BIN" environment variable to "GITALY_TEST_WITH_PRAEFECT".
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 59ccd76fe..7225c2ee5 100644
--- a/Makefile
+++ b/Makefile
@@ -290,8 +290,8 @@ test-with-proxies: prepare-tests
.PHONY: test-with-praefect
## Run Go tests with Praefect.
-test-with-praefect: build prepare-tests
- ${Q}GITALY_TEST_PRAEFECT_BIN=${BUILD_DIR}/bin/praefect $(call run_go_tests)
+test-with-praefect: prepare-tests
+ ${Q}GITALY_TEST_WITH_PRAEFECT=YesPlease $(call run_go_tests)
.PHONY: test-postgres
## Run Go tests with Postgres.