From 8261c1fcfd95392d756bf8773ea26b439caa0f21 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Tue, 2 Nov 2021 15:11:05 -0700 Subject: [PATCH] [pytest]: Increase timeout when checking services (#2000) Increase timeout during VS tests when checking DVS services Signed-off-by: Lawrence Lee --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index b4633c1aa8f0..059c0576fb9e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -459,7 +459,7 @@ def check_ready_status_and_init_db(self) -> None: self.destroy() raise - def check_services_ready(self, timeout=30) -> None: + def check_services_ready(self, timeout=60) -> None: """Check if all processes in the DVS are ready.""" service_polling_config = PollingConfig(1, timeout, strict=True)