File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 66
66
TEST_EXIT_PASSED = 0
67
67
TEST_EXIT_SKIPPED = 77
68
68
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
+
69
76
BASE_SCRIPTS = [
70
77
# Scripts that are run by the travis build process.
71
78
# Longest test should go first, to favor running tests in parallel
72
- 'feature_pruning.py' ,
73
79
'feature_fee_estimation.py' ,
74
80
'wallet_hd.py' ,
75
81
'wallet_backup.py' ,
197
203
# Put them in a random line within the section that fits their approximate run-time
198
204
]
199
205
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
-
206
206
# Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
207
207
ALL_SCRIPTS = EXTENDED_SCRIPTS + BASE_SCRIPTS
208
208
You can’t perform that action at this time.
0 commit comments