*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit 19c2b7c6 authored by android172's avatar android172
Browse files

Timeout printing fix.

parent 8f99dc3d
No related branches found
No related tags found
No related merge requests found
......@@ -82,13 +82,16 @@ def test_warps_and_scenes():
text=True
)
print(ret.stdout)
print(ret.error)
bt_s, rt_s = extract_times(
ret.stdout,
"-" if ret.returncode == 0 else "error"
)
except subprocess.TimeoutExpired as e:
print(e.stdout)
bt_s, rt_s = extract_times(
e.output,
e.stdout,
"timeout"
)
with open("to_" + t, 'w') as fp:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment