From 5b8dd680065a7e39eed1e0771b78974e66198244 Mon Sep 17 00:00:00 2001 From: Daniel Mellado Date: Fri, 8 Mar 2024 14:20:57 +0100 Subject: [PATCH] Increase e2e test timeout to 150 min This commit extends the timeout of CMO e2e tests to 150' in order to avoid being cut by the CI when they run closer to the time limit. Signed-off-by: Daniel Mellado --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d09ba76887..de94c9ae56 100644 --- a/Makefile +++ b/Makefile @@ -250,7 +250,7 @@ test-unit: .PHONY: test-e2e test-e2e: KUBECONFIG?=$(HOME)/.kube/config test-e2e: - go test -v -timeout=120m ./test/e2e/ --kubeconfig $(KUBECONFIG) + go test -v -timeout=150m ./test/e2e/ --kubeconfig $(KUBECONFIG) $(BIN_DIR): mkdir -p $(BIN_DIR)