Makefile: disable test caching

This does not work well when you're changing C stuff underneath.
This commit is contained in:
Carlos Martín Nieto 2019-12-10 22:15:09 +00:00
parent 93a1ee401f
commit 790b3d2ac0
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ default: test
test: build-libgit2
go run script/check-MakeGitError-thread-lock.go
go test ./...
go test --count=1 ./...
install: build-libgit2
go install ./...
@ -15,4 +15,4 @@ install-static: build-libgit2
test-static: build-libgit2
go run script/check-MakeGitError-thread-lock.go
go test --tags "static" ./...
go test --count=1 --tags "static" ./...