[qa] create_cache: Delete temp dir when done

This commit is contained in:
MarcoFalke 2016-09-13 19:35:35 +02:00 committed by Jack Grigg
parent 2d90c8f0d8
commit 352f2dc54b
1 changed files with 8 additions and 2 deletions

View File

@ -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