test: Disable test caching

This commit is contained in:
Anton Ovchinnikov
2025-05-25 19:53:43 +02:00
parent 51f7ebf3bf
commit d9e906a77e
+2 -2
View File
@@ -65,9 +65,9 @@ ucind-multiarch-image-push:
.PHONY: test .PHONY: test
test: test:
ifeq ($(TEST_NAME),) ifeq ($(TEST_NAME),)
go test -v ./... go test -count=1 -v ./...
else else
go test -v -run ^$(TEST_NAME)$$ ./... go test -count=1 -v -run ^$(TEST_NAME)$$ ./...
endif endif
.PHONY: test-clean .PHONY: test-clean