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:06 UTC

[camel-k] branch squakez-patch-2 created (now 3b5a721e9)

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

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


      at 3b5a721e9 fix(e2e): increase trait test timeout

This branch includes the following new commits:

     new 3b5a721e9 fix(e2e): increase trait test timeout

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by pc...@apache.org.
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}