From dc73a33849ce6b76093eca1aade29cfe390d63a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Szadkowski?= Date: Mon, 8 Jul 2024 09:48:43 +0200 Subject: [PATCH] Increase waiting time to verify workload completion. (#2463) The time could be increased due to the fact that is out of Kueue's control. As the time is controlled by the Kubernetes. --- test/e2e/singlecluster/pod_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/singlecluster/pod_test.go b/test/e2e/singlecluster/pod_test.go index 200b2d2c13..7ae30958ba 100644 --- a/test/e2e/singlecluster/pod_test.go +++ b/test/e2e/singlecluster/pod_test.go @@ -543,7 +543,7 @@ var _ = ginkgo.Describe("Pod groups", func() { var p corev1.Pod g.Expect(k8sClient.Get(ctx, replKey, &p)).To(gomega.Succeed()) g.Expect(p.Status.Phase).To(gomega.Equal(corev1.PodSucceeded)) - }, util.Timeout, util.Interval).Should(gomega.Succeed()) + }, util.LongTimeout, util.Interval).Should(gomega.Succeed()) } })