increase delays/timeouts for RPi in HIL tests

This commit is contained in:
Jan Käberich 2024-05-01 15:37:39 +02:00
parent 1edaceec4b
commit 37c1064881

View file

@ -21,7 +21,7 @@ class TestBase(unittest.TestCase):
if "Listening on port 19544" in line: if "Listening on port 19544" in line:
break break
time.sleep(0.2) time.sleep(1)
self.vna = libreVNA('localhost', 19544) self.vna = libreVNA('localhost', 19544)
try: try:
@ -38,7 +38,7 @@ class TestBase(unittest.TestCase):
def tearDown(self): def tearDown(self):
self.gui.send_signal(SIGINT) self.gui.send_signal(SIGINT)
try: try:
self.gui.wait(timeout = 0.1) self.gui.wait(timeout = 3)
except subprocess.TimeoutExpired: except subprocess.TimeoutExpired:
self.gui.kill() self.gui.kill()