From 715c4446d0597f627590c4930f0829d045b82bc2 Mon Sep 17 00:00:00 2001 From: Fabian Seidl <fabian.b.seidl@stud.h-da.de> Date: Wed, 1 Jun 2022 16:26:33 +0000 Subject: [PATCH] Resolve "Fix failing tests in ci because of default timeout in gotestsum" See merge request danet/gosdn!326 --- controller/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/Makefile b/controller/Makefile index 6574425ce..f5b2a70e8 100644 --- a/controller/Makefile +++ b/controller/Makefile @@ -41,7 +41,7 @@ controller-test: install-tools ENVIRONMENT=testing ./$(TOOLS_DIR)/gotestsum --junitfile report.xml --format testname -- -race -v -run TestRun ci-unit-test: ci-install-tools - ENVIRONMENT=testing gotestsum --junitfile report.xml --format testname -- -short -race $$( go list ./... | grep -v /forks/ | grep -v /mocks ) -v -coverprofile=coverage.out + ENVIRONMENT=testing gotestsum --junitfile report.xml --format testname -- -short -race $$( go list ./... | grep -v /forks/ | grep -v /mocks ) -v -coverprofile=coverage.out -timeout 30m ci-controller-test: ci-install-tools ENVIRONMENT=testing gotestsum --junitfile report.xml --format testname -- -race -v -run TestRun -coverprofile=coverage.out -- GitLab