Increase timeout for slower test machines.

This commit is contained in:
Paul Kronenwetter 2022-06-03 16:09:25 -04:00
parent b618fe6c89
commit 2481102fa2
2 changed files with 2 additions and 2 deletions

View file

@ -149,7 +149,7 @@ def t_highsnr_arq_short_station1(
time.sleep(0.5)
# This transaction should take less than 14 sec.
timeout = time.time() + 14
timeout = time.time() + 20
while "ARQ;TRANSMITTING;SUCCESS" not in static.INFO:
if time.time() > timeout:
log.warning("station1 TIMEOUT", first=True)

View file

@ -132,7 +132,7 @@ def t_highsnr_arq_short_station2(
# time.sleep(2)
# This transaction should take less than 14 sec.
timeout = time.time() + 14
timeout = time.time() + 20
while "ARQ;RECEIVING;SUCCESS" not in static.INFO or static.ARQ_STATE:
if time.time() > timeout:
log.warning("station2 TIMEOUT", first=True)