Makefile: disable test caching
This does not work well when you're changing C stuff underneath.
This commit is contained in:
parent
93a1ee401f
commit
790b3d2ac0
4
Makefile
4
Makefile
|
@ -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" ./...
|
||||
|
|
Loading…
Reference in New Issue