File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ The ZMQ functional test requires a python ZMQ library. To install it:
25
25
Running tests locally
26
26
=====================
27
27
28
+ Build for your system first. Be sure to enable wallet, utils and daemon when you configure. Tests will not run otherwise.
29
+
28
30
Functional tests
29
31
----------------
30
32
Original file line number Diff line number Diff line change 140
140
'replace-by-fee.py' ,
141
141
]
142
142
143
- ALL_SCRIPTS = BASE_SCRIPTS + ZMQ_SCRIPTS + EXTENDED_SCRIPTS
143
+ # Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
144
+ ALL_SCRIPTS = EXTENDED_SCRIPTS + BASE_SCRIPTS + ZMQ_SCRIPTS
144
145
145
146
NON_SCRIPTS = [
146
147
# These are python files that live in the functional tests directory, but are not test scripts.
@@ -217,10 +218,9 @@ def main():
217
218
if enable_zmq :
218
219
test_list += ZMQ_SCRIPTS
219
220
if args .extended :
220
- test_list += EXTENDED_SCRIPTS
221
- # TODO: BASE_SCRIPTS and EXTENDED_SCRIPTS are sorted by runtime
222
- # (for parallel running efficiency). This combined list will is no
223
- # longer sorted.
221
+ # place the EXTENDED_SCRIPTS first since the three longest ones
222
+ # are there and the list is shorter
223
+ test_list = EXTENDED_SCRIPTS + test_list
224
224
225
225
# Remove the test cases that the user has explicitly asked to exclude.
226
226
if args .exclude :
You can’t perform that action at this time.
0 commit comments