From e796a82d112ec385a36c7150a24a82dc8d7c67e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Matczuk?= Date: Thu, 16 Apr 2020 12:16:52 +0200 Subject: [PATCH] makefile: Disable test cache MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MichaƂ Matczuk --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e270e3c..9b22fd8 100644 --- a/Makefile +++ b/Makefile @@ -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: