Browse Source

Merge #8713: [qa] create_cache: Delete temp dir when done

fa27d99 [qa] create_cache: Delete temp dir when done (MarcoFalke)
0.14
MarcoFalke 8 years ago
parent
commit
1e5799c525
No known key found for this signature in database
GPG Key ID: 2D7F2372E50FE137
  1. 10
      qa/rpc-tests/create_cache.py

10
qa/rpc-tests/create_cache.py

@ -12,9 +12,15 @@ from test_framework.test_framework import BitcoinTestFramework @@ -12,9 +12,15 @@ from test_framework.test_framework import BitcoinTestFramework
class CreateCache(BitcoinTestFramework):
def __init__(self):
super().__init__()
# Test network and test nodes are not required:
self.num_nodes = 0
self.nodes = []
def setup_network(self):
# Don't setup any test nodes
self.options.noshutdown = True
pass
def run_test(self):
pass

Loading…
Cancel
Save