diff options
author | fanquake <fanquake@gmail.com> | 2022-03-23 20:02:04 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-03-23 20:02:23 +0000 |
commit | ce05f838f1457088770a2fb5471e99195c8333b0 (patch) | |
tree | e5026fee3e55520d8bf2cd8af8427f6fc6a407a1 /test | |
parent | 30041261a315688a7fd324a4b8c2b2396192a1db (diff) | |
parent | fa7a576391ad5d61af937dd62496ded44105c671 (diff) |
Merge bitcoin/bitcoin#24635: test: Run non-wallet tests only once
fa7a576391ad5d61af937dd62496ded44105c671 test: Run non-wallet tests only once (MarcoFalke)
Pull request description:
I don't see why non-wallet tests should run for two wallet configs, even though they never use a wallet.
ACKs for top commit:
achow101:
ACK fa7a576391ad5d61af937dd62496ded44105c671
Tree-SHA512: 2a135acf3c3c83a2704ae11f40c72882b23a676828647be1a066653c4d00e4523704f377eb8745c6386829601cc5d643abdce376831c1db91a07e999e1d5e01f
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/test_runner.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index b0f24e3b97..2a55be989d 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -188,8 +188,7 @@ BASE_SCRIPTS = [ 'rpc_decodescript.py', 'rpc_blockchain.py', 'rpc_deprecated.py', - 'wallet_disable.py --legacy-wallet', - 'wallet_disable.py --descriptors', + 'wallet_disable.py', 'p2p_addr_relay.py', 'p2p_getaddr_caching.py', 'p2p_getdata.py', @@ -309,8 +308,7 @@ BASE_SCRIPTS = [ 'feature_txindex_compatibility.py', 'feature_logging.py', 'feature_anchors.py', - 'feature_coinstatsindex.py --legacy-wallet', - 'feature_coinstatsindex.py --descriptors', + 'feature_coinstatsindex.py', 'wallet_orphanedreward.py', 'wallet_timelock.py', 'p2p_node_network_limited.py', |