From f34269cd224c77621478baca06c94c50fe8bacd0 Mon Sep 17 00:00:00 2001 From: Maysa Macedo Date: Wed, 27 Nov 2019 11:12:39 +0100 Subject: [PATCH] Reduce flakiness of pod creation timeout As this test recreates the namespace and a pod on it, it could take a bit longer for the older KuryrNet CRD to be removed and recreated, plus the pool to be populated causing the pod creation to timeout. This commit reduce the flakiness by increasing the timeout. Change-Id: I31a874c5f1d0d134e555a32b09a71e9466daea77 --- kuryr_tempest_plugin/tests/scenario/test_namespace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kuryr_tempest_plugin/tests/scenario/test_namespace.py b/kuryr_tempest_plugin/tests/scenario/test_namespace.py index 5c53ed37..e7239112 100644 --- a/kuryr_tempest_plugin/tests/scenario/test_namespace.py +++ b/kuryr_tempest_plugin/tests/scenario/test_namespace.py @@ -388,4 +388,4 @@ class TestNamespaceScenario(base.BaseKuryrScenarioTest): namespace=ns_name, wait_for_status=False) self.wait_for_pod_status(pod_name, namespace=ns_name, - pod_status='Running', retries=60) + pod_status='Running', retries=180)