From c47c13b58792eddce58d85f07156c6f82ef5c248 Mon Sep 17 00:00:00 2001 From: Pierangelo Di Pilato Date: Thu, 9 Sep 2021 19:27:18 +0200 Subject: [PATCH] Increase MaxNamespaceSkip in test runner ``` test_runner.go:163: Couldn't initialize clients: unable to find available namespace ``` --- test/lib/test_runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/test_runner.go b/test/lib/test_runner.go index 9ee78d0ae92..7a2a77d63a9 100644 --- a/test/lib/test_runner.go +++ b/test/lib/test_runner.go @@ -48,7 +48,7 @@ import ( const ( podLogsDir = "pod-logs" testPullSecretName = "kn-eventing-test-pull-secret" - MaxNamespaceSkip = 50 + MaxNamespaceSkip = 100 MaxRetries = 5 RetrySleepDuration = 2 * time.Second )