From 3cdebd3be66fdce1fd567df393fe24051a7fd82c Mon Sep 17 00:00:00 2001 From: Panos Koutsovasilis Date: Fri, 19 Jul 2024 15:51:26 +0300 Subject: [PATCH] wip: break TestKubernetesAgentStandalone test --- testing/integration/kubernetes_agent_standalone_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/integration/kubernetes_agent_standalone_test.go b/testing/integration/kubernetes_agent_standalone_test.go index 41f06b28cc8..f709482f306 100644 --- a/testing/integration/kubernetes_agent_standalone_test.go +++ b/testing/integration/kubernetes_agent_standalone_test.go @@ -133,6 +133,7 @@ func TestKubernetesAgentStandalone(t *testing.T) { // Wait for pods to be ready require.Eventually(t, func() bool { + return false podList := &corev1.PodList{} err := client.Resources(namespace).List(ctx, podList) require.NoError(t, err) @@ -156,7 +157,7 @@ func TestKubernetesAgentStandalone(t *testing.T) { } return true - }, time.Second*100, time.Second*1, "Timed out waiting for pods to be ready") + }, time.Second*10, time.Second*1, "Timed out waiting for pods to be ready") } func dumpLogs(t *testing.T, ctx context.Context, client klient.Client, namespace string, targetDir string) {