mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
increase delays/timeouts for RPi in HIL tests
This commit is contained in:
parent
1edaceec4b
commit
37c1064881
|
|
@ -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()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue