summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2019-12-10 22:15:09 +0000
committerCarlos Martín Nieto <[email protected]>2019-12-10 22:15:09 +0000
commit790b3d2ac014385a76e858bc21549be50c3ef7c8 (patch)
tree0ec1e3fffad70d77a1e7f6285a8e9dddd46cee45
parent93a1ee401f5b924a23a43d1499b0516ce455e59d (diff)
Makefile: disable test caching
This does not work well when you're changing C stuff underneath.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cf00cef..4dffce0 100644
--- a/Makefile
+++ b/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" ./...