From 609b5b132c6cfc49bd53eb1734a0c8b7dae6ec54 Mon Sep 17 00:00:00 2001 From: Georgy Moiseev Date: Fri, 16 Dec 2022 14:43:16 +0300 Subject: [PATCH] make: clean cache for test After this patch, "make test" behaves similar to "make test-*". Part of #214 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 718139967..7ed0aa88e 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,8 @@ golangci-lint: .PHONY: test test: + @echo "Running all packages tests" + go clean -testcache go test -tags "$(TAGS)" ./... -v -p 1 .PHONY: testdata