You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/05/08 11:22:58 UTC

[camel-k] 01/01: fix(e2e): increase commonwithcustominstall timeout

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 99ab934113373328770d48f09d215463eaf3d84d
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Mon May 8 11:52:57 2023 +0200

    fix(e2e): increase commonwithcustominstall timeout
    
    Closes #4316
---
 e2e/commonwithcustominstall/reset_test.go | 1 -
 script/Makefile                           | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/e2e/commonwithcustominstall/reset_test.go b/e2e/commonwithcustominstall/reset_test.go
index 75e5372fd..9478afd1e 100644
--- a/e2e/commonwithcustominstall/reset_test.go
+++ b/e2e/commonwithcustominstall/reset_test.go
@@ -37,7 +37,6 @@ func TestKamelReset(t *testing.T) {
 		Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed())
 
 		t.Run("Reset the whole platform", func(t *testing.T) {
-
 			name := "yaml1"
 			Expect(KamelRunWithID(operatorID, ns, "files/yaml.yaml", "--name", name).Execute()).To(Succeed())
 			Eventually(IntegrationPodPhase(ns, name), TestTimeoutMedium).Should(Equal(corev1.PodRunning))
diff --git a/script/Makefile b/script/Makefile
index 5be88de4b..b48efb190 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -276,7 +276,7 @@ test-common: do-build
 #
 test-common-with-custom-install: do-build
 	FAILED=0; STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)"; \
-	go test -timeout 60m -v ./e2e/commonwithcustominstall -tags=integration $(TEST_INSTALL_RUN) $(GOTESTFMT) || FAILED=1; \
+	go test -timeout 90m -v ./e2e/commonwithcustominstall -tags=integration $(TEST_INSTALL_RUN) $(GOTESTFMT) || FAILED=1; \
 	exit $${FAILED}
 
 #