diff --git a/Makefile b/Makefile index cd5e84d..888fd20 100755 --- a/Makefile +++ b/Makefile @@ -51,9 +51,10 @@ protoc: rm -rf vendor # Run Unit Test with go test +test: GOFLAGS ?= "-count=1" test: @echo "⇒ Running go test" - @go test ./... -count=1 + @GOFLAGS="$(GOFLAGS)" go test ./... # Run linters lint: