diff --git a/Makefile b/Makefile index 854108f43..fec056432 100644 --- a/Makefile +++ b/Makefile @@ -84,6 +84,10 @@ clean: test: # run tests go test ./... +.PHONY: force-test +force-test: # run all tests (no cached results) + go test -count=1 ./... + .PHONY: format format: # format go code gofmt -s -w ./