This is an automated email from the ASF dual-hosted git repository.
squakez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 23f1931a3 chore(e2e): very long timeout to reduce flakyness
23f1931a3 is described below
commit 23f1931a3d8ae522f8cc5c93169346ae9b348ab5
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Mon Aug 17 09:07:12 2026 +0200
chore(e2e): very long timeout to reduce flakyness
---
e2e/common/misc/integration_fail_test.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/e2e/common/misc/integration_fail_test.go
b/e2e/common/misc/integration_fail_test.go
index 3f25de074..d16d7e49f 100644
--- a/e2e/common/misc/integration_fail_test.go
+++ b/e2e/common/misc/integration_fail_test.go
@@ -66,8 +66,8 @@ func TestBadRouteIntegration(t *testing.T) {
name := RandomizedSuffixName("java-route")
g.Expect(KamelRun(t, ctx, ns, "files/Java.java",
"--name", name,
"-d", "mvn:com.example:nonexistent:1.0", "-t",
"health.enabled=false").Execute()).To(Succeed())
- // Integration in error
- g.Eventually(IntegrationPhase(t, ctx, ns, name),
TestTimeoutLong).Should(Equal(v1.IntegrationPhaseError))
+ // NOTE: we need a very long timeout as there may be up
to 5 attempts to build the Integration
+ g.Eventually(IntegrationPhase(t, ctx, ns, name),
TestTimeoutVeryLong).Should(Equal(v1.IntegrationPhaseError))
g.Eventually(IntegrationConditionStatus(t, ctx, ns,
name, v1.IntegrationConditionKitAvailable),
TestTimeoutShort).Should(Equal(corev1.ConditionFalse))
g.Eventually(IntegrationCondition(t, ctx, ns, name,
v1.IntegrationConditionKitAvailable), TestTimeoutShort).Should(
WithTransform(IntegrationConditionReason,
Equal(v1.IntegrationConditionKitAvailableReason)))