|
58 | 58 | BASE_SCRIPTS = [
|
59 | 59 | # Scripts that are run by the travis build process.
|
60 | 60 | # Longest test should go first, to favor running tests in parallel
|
| 61 | + 'feature_fee_estimation.py', |
61 | 62 | 'wallet_hd.py',
|
62 | 63 | 'wallet_backup.py',
|
63 | 64 | # vv Tests less than 5m vv
|
| 65 | + 'mining_getblocktemplate_longpoll.py', |
| 66 | + 'feature_maxuploadtarget.py', |
64 | 67 | 'feature_block.py',
|
65 | 68 | 'rpc_fundrawtransaction.py',
|
66 | 69 | 'p2p_compactblocks.py',
|
|
69 | 72 | 'wallet_basic.py',
|
70 | 73 | 'wallet_labels.py',
|
71 | 74 | 'p2p_segwit.py',
|
| 75 | + 'p2p_timeouts.py', |
72 | 76 | 'wallet_dump.py',
|
73 | 77 | 'wallet_listtransactions.py',
|
74 | 78 | # vv Tests less than 60s vv
|
|
82 | 86 | 'feature_csv_activation.py',
|
83 | 87 | 'rpc_rawtransaction.py',
|
84 | 88 | 'wallet_address_types.py',
|
| 89 | + 'feature_bip68_sequence.py', |
| 90 | + 'p2p_feefilter.py', |
85 | 91 | 'feature_reindex.py',
|
86 | 92 | # vv Tests less than 30s vv
|
87 | 93 | 'wallet_keypool_topup.py',
|
|
118 | 124 | 'p2p_invalid_locator.py',
|
119 | 125 | 'p2p_invalid_block.py',
|
120 | 126 | 'p2p_invalid_tx.py',
|
| 127 | + 'feature_assumevalid.py', |
| 128 | + 'example_test.py', |
| 129 | + 'wallet_txn_doublespend.py', |
| 130 | + 'wallet_txn_clone.py --mineblock', |
| 131 | + 'feature_notifications.py', |
| 132 | + 'rpc_invalidateblock.py', |
| 133 | + 'feature_rbf.py', |
| 134 | + 'mempool_packages.py', |
121 | 135 | 'rpc_createmultisig.py',
|
122 | 136 | 'feature_versionbits_warning.py',
|
123 | 137 | 'rpc_preciousblock.py',
|
|
162 | 176 | # These tests are not run by the travis build process.
|
163 | 177 | # Longest test should go first, to favor running tests in parallel
|
164 | 178 | 'feature_pruning.py',
|
165 |
| - # vv Tests less than 20m vv |
166 |
| - 'feature_fee_estimation.py', |
167 |
| - # vv Tests less than 5m vv |
168 |
| - 'feature_maxuploadtarget.py', |
169 |
| - 'mempool_packages.py', |
170 | 179 | 'feature_dbcrash.py',
|
171 |
| - # vv Tests less than 2m vv |
172 |
| - 'feature_bip68_sequence.py', |
173 |
| - 'mining_getblocktemplate_longpoll.py', |
174 |
| - 'p2p_timeouts.py', |
175 |
| - # vv Tests less than 60s vv |
176 |
| - 'p2p_feefilter.py', |
177 |
| - # vv Tests less than 30s vv |
178 |
| - 'feature_assumevalid.py', |
179 |
| - 'example_test.py', |
180 |
| - 'wallet_txn_doublespend.py', |
181 |
| - 'wallet_txn_clone.py --mineblock', |
182 |
| - 'feature_notifications.py', |
183 |
| - 'rpc_invalidateblock.py', |
184 |
| - 'feature_rbf.py', |
185 | 180 | ]
|
186 | 181 |
|
187 | 182 | # Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
|
|
0 commit comments