You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2022/01/31 08:58:30 UTC

[camel-k] 19/40: Extends test timeout for builder tests

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

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

commit 4b9aab6c5f77cd5b95e2feee0da4c4952168022e
Author: phantomjinx <p....@phantomjinx.co.uk>
AuthorDate: Mon Nov 29 20:48:58 2021 +0000

    Extends test timeout for builder tests
    
    * Timeout for build default to 60 seconds which is not long enough on OS
---
 e2e/builder/build_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/e2e/builder/build_test.go b/e2e/builder/build_test.go
index aca0f6f..4bb195b 100644
--- a/e2e/builder/build_test.go
+++ b/e2e/builder/build_test.go
@@ -90,7 +90,7 @@ func doKitFullBuild(t *testing.T, name string, memoryLimit string, buildTimeout
 		}
 		Expect(Kamel(buildKitArgs...).Execute()).To(Succeed())
 
-		Eventually(Build(ns, name)).ShouldNot(BeNil())
+		Eventually(Build(ns, name), testTimeout).ShouldNot(BeNil())
 		Eventually(BuildPhase(ns, name), testTimeout).Should(Equal(v1.BuildPhaseSucceeded))
 		Eventually(KitPhase(ns, name), testTimeout).Should(Equal(v1.IntegrationKitPhaseReady))
 	})