diff options
author | tdb3 <106488469+tdb3@users.noreply.github.com> | 2024-11-30 12:31:16 -0500 |
---|---|---|
committer | tdb3 <106488469+tdb3@users.noreply.github.com> | 2024-11-30 12:31:16 -0500 |
commit | 62f6d9e1a48e3b63c504996e914075cacfdcaedc (patch) | |
tree | c8d1269f2b78f50f91b51edac947fd5045be1a5d /test | |
parent | dbc8ba12f3b3548dd6955293c5d650320ca39c5b (diff) |
test: simple ordering optimization to reduce runtime
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/test_runner.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index a1b901586a..5a542e58a4 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -96,6 +96,10 @@ BASE_SCRIPTS = [ 'feature_fee_estimation.py', 'feature_taproot.py', 'feature_block.py', + 'mempool_ephemeral_dust.py', + 'wallet_conflicts.py --legacy-wallet', + 'wallet_conflicts.py --descriptors', + 'p2p_opportunistic_1p1c.py', 'p2p_node_network_limited.py --v1transport', 'p2p_node_network_limited.py --v2transport', # vv Tests less than 2m vv @@ -146,6 +150,7 @@ BASE_SCRIPTS = [ 'p2p_feefilter.py', 'feature_csv_activation.py', 'p2p_sendheaders.py', + 'feature_config_args.py', 'wallet_listtransactions.py --legacy-wallet', 'wallet_listtransactions.py --descriptors', 'wallet_miniscript.py --descriptors', @@ -199,7 +204,6 @@ BASE_SCRIPTS = [ 'rpc_getchaintips.py', 'rpc_misc.py', 'p2p_1p1c_network.py', - 'p2p_opportunistic_1p1c.py', 'interface_rest.py', 'mempool_spend_coinbase.py', 'wallet_avoid_mixing_output_types.py --descriptors', @@ -214,8 +218,6 @@ BASE_SCRIPTS = [ 'wallet_reindex.py --legacy-wallet', 'wallet_reindex.py --descriptors', 'wallet_reorgsrestore.py', - 'wallet_conflicts.py --legacy-wallet', - 'wallet_conflicts.py --descriptors', 'interface_http.py', 'interface_rpc.py', 'interface_usdt_coinselection.py', @@ -395,13 +397,11 @@ BASE_SCRIPTS = [ 'feature_remove_pruned_files_on_startup.py', 'p2p_i2p_ports.py', 'p2p_i2p_sessions.py', - 'feature_config_args.py', 'feature_presegwit_node_upgrade.py', 'feature_settings.py', 'rpc_getdescriptorinfo.py', 'rpc_mempool_info.py', 'rpc_help.py', - 'mempool_ephemeral_dust.py', 'p2p_handshake.py', 'p2p_handshake.py --v2transport', 'feature_dirsymlinks.py', |