Add a force-test target to disable caching

This commit is contained in:
Chris Roberts 2023-06-12 09:21:35 -07:00
parent 1c98ab7111
commit 8e50b801cd

View File

@ -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 ./