Skip to content

Commit fa08c5c

Browse files
author
MarcoFalke
committed
test_runner: Move pruning back to extended
1 parent c4560a7 commit fa08c5c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/functional/test_runner.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,16 @@
6666
TEST_EXIT_PASSED = 0
6767
TEST_EXIT_SKIPPED = 77
6868

69+
EXTENDED_SCRIPTS = [
70+
# These tests are not run by the travis build process.
71+
# Longest test should go first, to favor running tests in parallel
72+
'feature_pruning.py',
73+
'feature_dbcrash.py',
74+
]
75+
6976
BASE_SCRIPTS = [
7077
# Scripts that are run by the travis build process.
7178
# Longest test should go first, to favor running tests in parallel
72-
'feature_pruning.py',
7379
'feature_fee_estimation.py',
7480
'wallet_hd.py',
7581
'wallet_backup.py',
@@ -197,12 +203,6 @@
197203
# Put them in a random line within the section that fits their approximate run-time
198204
]
199205

200-
EXTENDED_SCRIPTS = [
201-
# These tests are not run by the travis build process.
202-
# Longest test should go first, to favor running tests in parallel
203-
'feature_dbcrash.py',
204-
]
205-
206206
# Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
207207
ALL_SCRIPTS = EXTENDED_SCRIPTS + BASE_SCRIPTS
208208

0 commit comments

Comments
 (0)