Allow passing number of tests runs through "COUNT" parameter.

This commit is contained in:
Joachim Bauch 2020-07-31 13:49:52 +02:00
parent 75abe6d653
commit a3718a4664
Failed to extract signature

View file

@ -31,6 +31,10 @@ ifneq ($(TEST),)
TESTARGS := $(TESTARGS) -run $(TEST)
endif
ifneq ($(COUNT),)
TESTARGS := $(TESTARGS) -count $(COUNT)
endif
hook:
[ ! -d "$(CURDIR)/.git/hooks" ] || ln -sf "$(CURDIR)/scripts/pre-commit.hook" "$(CURDIR)/.git/hooks/pre-commit"