test_runner: Move pruning back to extended
This commit is contained in:
parent
c4560a7dfe
commit
fa08c5cb99
1 changed files with 7 additions and 7 deletions
|
@ -66,10 +66,16 @@ if os.name != 'nt' or sys.getwindowsversion() >= (10, 0, 14393):
|
||||||
TEST_EXIT_PASSED = 0
|
TEST_EXIT_PASSED = 0
|
||||||
TEST_EXIT_SKIPPED = 77
|
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 = [
|
BASE_SCRIPTS = [
|
||||||
# Scripts that are run by the travis build process.
|
# Scripts that are run by the travis build process.
|
||||||
# Longest test should go first, to favor running tests in parallel
|
# Longest test should go first, to favor running tests in parallel
|
||||||
'feature_pruning.py',
|
|
||||||
'feature_fee_estimation.py',
|
'feature_fee_estimation.py',
|
||||||
'wallet_hd.py',
|
'wallet_hd.py',
|
||||||
'wallet_backup.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
|
# 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
|
# Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
|
||||||
ALL_SCRIPTS = EXTENDED_SCRIPTS + BASE_SCRIPTS
|
ALL_SCRIPTS = EXTENDED_SCRIPTS + BASE_SCRIPTS
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue