We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a2549 commit 904c0f7Copy full SHA for 904c0f7
makefiles/test-unit.mk
@@ -1,8 +1,9 @@
1
GO ?= go
2
+UNIT_TEST_COUNT ?= 5
3
4
## Run unit tests
5
test-unit:
6
@echo "Running unit tests."
- @$(GO) test -gcflags=-l -coverprofile=unit.coverprofile -count 5 -covermode=atomic -race ./...
7
+ @$(GO) test -gcflags=-l -coverprofile=unit.coverprofile -count $(UNIT_TEST_COUNT) -covermode=atomic -race ./...
8
9
.PHONY: test-unit
0 commit comments