increase athena test timeout

pull/19546/head
Adeeb Shihadeh 5 years ago
parent 8828928961
commit 63cdf2a70c
  1. 5
      selfdrive/athena/test_helpers.py

@ -101,11 +101,12 @@ def with_http_server(func):
'HandlerClass': HTTPRequestHandler,
'bind': host})
p.start()
now = time.time()
start = time.monotonic()
port = None
while 1:
if time.time() - now > 5:
if time.monotonic() - start > 10:
raise Exception('HTTP Server did not start')
try:
port = port_queue.get(timeout=0.1)
requests.put(f'http://{host}:{port}/qlog.bz2', data='')

Loading…
Cancel
Save