diff options
| author | MarcoFalke <[email protected]> | 2018-11-10 13:14:40 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-11-10 13:12:40 -0500 |
| commit | fa5a6ce1022acf4722832490b1c6efb2b256e5ad (patch) | |
| tree | 77ca073ba6ebb8511c2f3a1e9fe59cab445ce471 /test/functional/test_runner.py | |
| parent | travis: Avoid timeout on verify-commits check (diff) | |
| download | discoin-fa5a6ce1022acf4722832490b1c6efb2b256e5ad.tar.xz discoin-fa5a6ce1022acf4722832490b1c6efb2b256e5ad.zip | |
qa: Raise ci test_runner timeout to 40 mins
Diffstat (limited to 'test/functional/test_runner.py')
| -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 90b333f45..ed7645e33 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 = [] |