diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-05-03 16:16:37 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-05-03 16:16:39 -0400 |
commit | fa08c5cb993f07fd4309f2a6bd9ef4696f07e24c (patch) | |
tree | d8a3cd20c486b7f9e72b2e58aabbc0a6bcbeb342 /test/functional | |
parent | c4560a7dfee94296e3fe7736423811c61356fbc5 (diff) |
test_runner: Move pruning back to extended
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/test_runner.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index d406ee3229..ec5d6f1715 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -66,10 +66,16 @@ if os.name != 'nt' or sys.getwindowsversion() >= (10, 0, 14393): TEST_EXIT_PASSED = 0 TEST_EXIT_SKIPPED = 77 +EXTENDED_SCRIPTS = [ + # These tests are not run by the travis build process. + # Longest test should go first, to favor running tests in parallel + 'feature_pruning.py', + 'feature_dbcrash.py', +] + BASE_SCRIPTS = [ # Scripts that are run by the travis build process. # Longest test should go first, to favor running tests in parallel - 'feature_pruning.py', 'feature_fee_estimation.py', 'wallet_hd.py', 'wallet_backup.py', @@ -197,12 +203,6 @@ BASE_SCRIPTS = [ # Put them in a random line within the section that fits their approximate run-time ] -EXTENDED_SCRIPTS = [ - # These tests are not run by the travis build process. - # Longest test should go first, to favor running tests in parallel - 'feature_dbcrash.py', -] - # Place EXTENDED_SCRIPTS first since it has the 3 longest running tests ALL_SCRIPTS = EXTENDED_SCRIPTS + BASE_SCRIPTS |