Increase timeout of test runner

This commit is contained in:
Ryan Houdek 2020-07-19 04:03:21 -07:00
parent dcf3899346
commit f613d670c7

View File

@ -40,7 +40,7 @@ with open(disabled_tests_file) as dtf:
disabled_tests[test] = 1
# run with timeout to avoid locking up
RunnerArgs = ["timeout", "45s"]
RunnerArgs = ["timeout", "300s"]
# Add the rest of the arguments
for i in range(len(sys.argv) - 5):