makefile: Disable test cache

Signed-off-by: Michał Matczuk <michal@scylladb.com>
This commit is contained in:
Michał Matczuk
2020-04-16 12:16:52 +02:00
committed by Michal Jan Matczuk
parent 17f58c5605
commit e796a82d11

View File

@@ -16,7 +16,7 @@ fmt:
check:
@$(GOBIN)/golangci-lint run ./...
GOTEST := go test -cover -race -tags all
GOTEST := go test -count=1 -cover -race -tags all
.PHONY: test
test: