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/07/05 14:30:07 UTC

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

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

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

commit 3b5a721e9edfa32fdb763fbc3bdedd5e5be04e98
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Wed Jul 5 16:30:01 2023 +0200

    fix(e2e): increase trait test timeout
    
    Attempt to close #4532
---
 script/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/script/Makefile b/script/Makefile
index 065f86565..ef1188956 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -268,7 +268,7 @@ test-common: do-build
 	go test -timeout 30m -v ./e2e/common/cli -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN) $(GOTESTFMT) || FAILED=1; \
 	go test -timeout 30m -v ./e2e/common/config -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN) $(GOTESTFMT) || FAILED=1; \
 	go test -timeout 30m -v ./e2e/common/misc -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN) $(GOTESTFMT) || FAILED=1; \
-	go test -timeout 30m -v ./e2e/common/traits -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN) $(GOTESTFMT) || FAILED=1; \
+	go test -timeout 60m -v ./e2e/common/traits -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN) $(GOTESTFMT) || FAILED=1; \
 	go test -timeout 10m -v ./e2e/common/support/teardown_test.go -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN) $(GOTESTFMT) || FAILED=1; \
 	exit $${FAILED}