From acc5c2262d9454c70faca90121295c99c9822b05 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Tue, 5 May 2020 12:04:00 +0200 Subject: [PATCH] =?UTF-8?q?test/e2e:=20bump=20the=20loop=20to=2090?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … this increase the timeout for the yaml tests. Signed-off-by: Vincent Demeester --- test/e2e-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e-common.sh b/test/e2e-common.sh index 389d2df0130..e0a6328bc33 100755 --- a/test/e2e-common.sh +++ b/test/e2e-common.sh @@ -64,7 +64,7 @@ function dump_extra_cluster_state() { function validate_run() { local tests_finished=0 - for i in {1..60}; do + for i in {1..90}; do local finished="$(kubectl get $1.tekton.dev --output=jsonpath='{.items[*].status.conditions[*].status}')" if [[ ! "$finished" == *"Unknown"* ]]; then tests_finished=1