From d9e906a77edb4a751c1903bda91a5b31c5aea220 Mon Sep 17 00:00:00 2001 From: Anton Ovchinnikov Date: Sun, 25 May 2025 19:53:43 +0200 Subject: [PATCH] test: Disable test caching --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 40746260..8bcf3f5c 100644 --- a/Makefile +++ b/Makefile @@ -65,9 +65,9 @@ ucind-multiarch-image-push: .PHONY: test test: ifeq ($(TEST_NAME),) - go test -v ./... + go test -count=1 -v ./... else - go test -v -run ^$(TEST_NAME)$$ ./... + go test -count=1 -v -run ^$(TEST_NAME)$$ ./... endif .PHONY: test-clean