diff options
| author | Carlos Martín Nieto <[email protected]> | 2019-12-10 22:15:09 +0000 |
|---|---|---|
| committer | Carlos Martín Nieto <[email protected]> | 2019-12-10 22:15:09 +0000 |
| commit | 790b3d2ac014385a76e858bc21549be50c3ef7c8 (patch) | |
| tree | 0ec1e3fffad70d77a1e7f6285a8e9dddd46cee45 | |
| parent | 93a1ee401f5b924a23a43d1499b0516ce455e59d (diff) | |
Makefile: disable test caching
This does not work well when you're changing C stuff underneath.
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" ./... |
