mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-17 21:50:43 +02:00
test: run feature_pruning.py without wallet compiled
Only one small part of the pruning test (sub-test `wallet_test`) is wallet-related, hence we can run all other parts without wallet compiled.
This commit is contained in:
parent
75a227e39e
commit
0754e9c01b
@ -96,9 +96,6 @@ class PruneTest(BitcoinTestFramework):
|
|||||||
]
|
]
|
||||||
self.rpc_timeout = 120
|
self.rpc_timeout = 120
|
||||||
|
|
||||||
def skip_test_if_missing_module(self):
|
|
||||||
self.skip_if_no_wallet()
|
|
||||||
|
|
||||||
def setup_network(self):
|
def setup_network(self):
|
||||||
self.setup_nodes()
|
self.setup_nodes()
|
||||||
|
|
||||||
@ -114,6 +111,7 @@ class PruneTest(BitcoinTestFramework):
|
|||||||
def setup_nodes(self):
|
def setup_nodes(self):
|
||||||
self.add_nodes(self.num_nodes, self.extra_args)
|
self.add_nodes(self.num_nodes, self.extra_args)
|
||||||
self.start_nodes()
|
self.start_nodes()
|
||||||
|
if self.is_wallet_compiled():
|
||||||
self.import_deterministic_coinbase_privkeys()
|
self.import_deterministic_coinbase_privkeys()
|
||||||
|
|
||||||
def create_big_chain(self):
|
def create_big_chain(self):
|
||||||
@ -474,6 +472,7 @@ class PruneTest(BitcoinTestFramework):
|
|||||||
self.log.info("Test manual pruning with timestamps")
|
self.log.info("Test manual pruning with timestamps")
|
||||||
self.manual_test(4, use_timestamp=True)
|
self.manual_test(4, use_timestamp=True)
|
||||||
|
|
||||||
|
if self.is_wallet_compiled():
|
||||||
self.log.info("Test wallet re-scan")
|
self.log.info("Test wallet re-scan")
|
||||||
self.wallet_test()
|
self.wallet_test()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user