diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-11-10 13:14:40 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-11-10 13:12:40 -0500 |
commit | fa5a6ce1022acf4722832490b1c6efb2b256e5ad (patch) | |
tree | 77ca073ba6ebb8511c2f3a1e9fe59cab445ce471 | |
parent | fa3df025e185ba664fd7bbc5f3cccb7da653f162 (diff) |
qa: Raise ci test_runner timeout to 40 mins
-rwxr-xr-x | test/functional/test_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 90b333f45a..ed7645e333 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -365,7 +365,7 @@ def run_tests(*, test_list, src_dir, build_dir, tmpdir, jobs=1, enable_coverage= tmpdir=tmpdir, test_list=test_list, flags=flags, - timeout_duration=20 * 60 if runs_ci else float('inf'), # in seconds + timeout_duration=40 * 60 if runs_ci else float('inf'), # in seconds ) start_time = time.time() test_results = [] |