Add a force-test target to disable caching
This commit is contained in:
parent
1c98ab7111
commit
8e50b801cd
4
Makefile
4
Makefile
@ -84,6 +84,10 @@ clean:
|
|||||||
test: # run tests
|
test: # run tests
|
||||||
go test ./...
|
go test ./...
|
||||||
|
|
||||||
|
.PHONY: force-test
|
||||||
|
force-test: # run all tests (no cached results)
|
||||||
|
go test -count=1 ./...
|
||||||
|
|
||||||
.PHONY: format
|
.PHONY: format
|
||||||
format: # format go code
|
format: # format go code
|
||||||
gofmt -s -w ./
|
gofmt -s -w ./
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user