mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Clear TestNode objects after shutdown
TestNode objects need to be removed during shutdown, as setup_nodes does not remove previous TestNode objects from previous test runs during setup.
This commit is contained in:
parent
6f40820757
commit
614c645643
1 changed files with 2 additions and 0 deletions
|
@ -280,6 +280,8 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
|
|||
rpc_logger.removeHandler(h)
|
||||
if cleanup_tree_on_exit:
|
||||
shutil.rmtree(self.options.tmpdir)
|
||||
|
||||
self.nodes.clear()
|
||||
return exit_code
|
||||
|
||||
# Methods to override in subclass test scripts.
|
||||
|
|
Loading…
Add table
Reference in a new issue