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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2018-10-22 14:47:43 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2018-10-22 14:47:43 +0300
commitde64bc4b761e04b5dc34ac371bcbfa226cfb9510 (patch)
tree28066f423ebb05655f65efb0bb56af88cc2a1309
parent6956c81384b5b149d0feea622d75953d3fbddd4c (diff)
Readd prepare-tests to the Makefile
Preparing the test environment would've stayed coupled to make test, but that is too slow when just testing one package. This would allow users that know this task exists just run `make prepare-tests`.
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 68954ed90..5d8fddb20 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,10 @@ assemble: prepare-build
binaries: prepare-build
cd $(BUILD_DIR) && make $@
+.PHONY: prepare-tests
+prepare-tests: prepare-build
+ cd $(BUILD_DIR) && make $@
+
.PHONY: test
test: prepare-build
cd $(BUILD_DIR) && make $@