Skip to content

Commit

Permalink
increase delays/timeouts for RPi in HIL tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jankae committed May 1, 2024
1 parent 1edacee commit 37c1064
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Software/Integrationtests/tests/TestBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def setUp(self):
if "Listening on port 19544" in line:
break

time.sleep(0.2)
time.sleep(1)

self.vna = libreVNA('localhost', 19544)
try:
Expand All @@ -38,7 +38,7 @@ def setUp(self):
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()

Expand Down

0 comments on commit 37c1064

Please sign in to comment.