From 234241db5fb5f8fa4fb26d73055ba1f136be69e2 Mon Sep 17 00:00:00 2001 From: Charandas Date: Mon, 25 Mar 2024 00:49:36 -0700 Subject: [PATCH] Makefile: fix test-go to run all (#85048) --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bd438e8a1e9..b8a938afa78 100644 --- a/Makefile +++ b/Makefile @@ -174,11 +174,10 @@ run-frontend: deps-js ## Fetch js dependencies and watch frontend for rebuild .PHONY: test-go test-go: test-go-unit test-go-integration -### TODO: temporarily run only the failing test (fails in PR only) .PHONY: test-go-unit test-go-unit: ## Run unit tests for backend with flags. @echo "test backend unit tests" - go list -f '{{.Dir}}/...' ./pkg/apiserver/storage/file | xargs \ + go list -f '{{.Dir}}/...' -m | xargs \ $(GO) test -short -covermode=atomic -timeout=30m .PHONY: test-go-integration