From 30a3f643e8c43f589a779c1972b563f1a1869d09 Mon Sep 17 00:00:00 2001 From: joshvanl Date: Thu, 19 Oct 2023 14:07:28 +0100 Subject: [PATCH] Increase test timeout to 30m for e2e tests Signed-off-by: joshvanl --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5407357a5..f292e3702 100644 --- a/Makefile +++ b/Makefile @@ -153,14 +153,14 @@ test: test-deps ################################################################################ .PHONY: test-e2e-k8s test-e2e-k8s: test-deps - gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 25m -count=1 -tags=e2e ./tests/e2e/kubernetes/... + gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 30m -count=1 -tags=e2e ./tests/e2e/kubernetes/... ################################################################################ # E2E Tests for K8s Template exec # ################################################################################ .PHONY: test-e2e-k8s-template test-e2e-k8s-template: test-deps - gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 25m -count=1 -tags=templatek8s ./tests/e2e/kubernetes/... + gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 30m -count=1 -tags=templatek8s ./tests/e2e/kubernetes/... ################################################################################ # Build, E2E Tests for Kubernetes #