From 37c10648811a23b8e5bd564adc4fda9d7f8560c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Wed, 1 May 2024 15:37:39 +0200 Subject: [PATCH] increase delays/timeouts for RPi in HIL tests --- Software/Integrationtests/tests/TestBase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Software/Integrationtests/tests/TestBase.py b/Software/Integrationtests/tests/TestBase.py index 32a8425..5b05730 100644 --- a/Software/Integrationtests/tests/TestBase.py +++ b/Software/Integrationtests/tests/TestBase.py @@ -21,7 +21,7 @@ class TestBase(unittest.TestCase): if "Listening on port 19544" in line: break - time.sleep(0.2) + time.sleep(1) self.vna = libreVNA('localhost', 19544) try: @@ -38,7 +38,7 @@ class TestBase(unittest.TestCase): def tearDown(self): self.gui.send_signal(SIGINT) try: - self.gui.wait(timeout = 0.1) + self.gui.wait(timeout = 3) except subprocess.TimeoutExpired: self.gui.kill()