From 5b6987cae0e33155ff305a63c67936f580086b9c Mon Sep 17 00:00:00 2001 From: blackandred <22807686+blackandred@users.noreply.github.com> Date: Sun, 6 Mar 2022 23:01:38 +0100 Subject: [PATCH] ci: Increase timeout --- tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/__init__.py b/tests/__init__.py index a827ee6e..4316cf07 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -49,4 +49,4 @@ def wait_for(label: str, ready: bool = True): if ready: condition = "=False" - subprocess.check_call(['kubectl', 'wait', '--for=condition=ready' + condition, 'pod', '-l', label, '-n', 'backup-repository']) + subprocess.check_call(['kubectl', 'wait', '--for=condition=ready' + condition, 'pod', '-l', label, '-n', 'backup-repository', '--timeout=120s'])