From dc46be3873dc20c32eea862ff23efa1ed42ecd70 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Boll Date: Tue, 3 Dec 2024 14:18:05 +0100 Subject: [PATCH] Increase timeout --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c9b405af9..46d0a6ad4 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ all: test lint # There is currently no convenient way to run tests against a whole Go workspace # https://github.com/golang/go/issues/50745 test: - go list -f '{{.Dir}}/...' -m |RUN_TEMPLATIZE_E2E=true xargs go test -timeout 120s -tags=$(GOTAGS) -cover + go list -f '{{.Dir}}/...' -m |RUN_TEMPLATIZE_E2E=true xargs go test -timeout 1200s -tags=$(GOTAGS) -cover .PHONY: test # There is currently no convenient way to run golangci-lint against a whole Go workspace