From 65656bbaf6ec60dcf3704fc82de0329efd71d728 Mon Sep 17 00:00:00 2001 From: Roger Coll Date: Thu, 12 Dec 2024 11:49:20 +0100 Subject: [PATCH] fix: skip Sudo tests for integration --- Makefile.Common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.Common b/Makefile.Common index d587de5bfad4..b8f2bb59913d 100644 --- a/Makefile.Common +++ b/Makefile.Common @@ -29,7 +29,7 @@ GO_BUILD_TAGS="" GO_BUILD_LDFLAGS="-s -w" GOTEST_TIMEOUT?= 600s GOTEST_OPT?= -race -timeout $(GOTEST_TIMEOUT) -parallel 4 --tags=$(GO_BUILD_TAGS) -GOTEST_INTEGRATION_OPT?= -race -timeout 360s -parallel 4 +GOTEST_INTEGRATION_OPT?= -race -timeout 360s -parallel 4 -skip Sudo GOTEST_INTEGRATION_OPT_SUDO= $(GOTEST_INTEGRATION_OPT) -exec sudo -run Sudo GOTEST_OPT_WITH_COVERAGE = $(GOTEST_OPT) -coverprofile=coverage.txt -covermode=atomic GOTEST_OPT_WITH_INTEGRATION=$(GOTEST_INTEGRATION_OPT) -tags=integration,$(GO_BUILD_TAGS)