Esempio n. 1
0
 def tearDown(self):
     removeTestTempDir(self.root)
Esempio n. 2
0
 def tearDownClass(cls):
     # TODO: use addClassCleanup rather than tearDownClass in Python 3.8
     # to keep the addition and removal together and make it more robust
     removeTestTempDir(cls.root)
Esempio n. 3
0
 def tearDown(self):
     removeTestTempDir(self.tmpdir)
 def tearDown(self):
     removeTestTempDir(self.root)
     del self.hspMap
Esempio n. 5
0
 def tearDownClass(cls):
     # Clean up any lingering SQLAlchemy engines/connections
     # so they're closed before we shut down the server.
     gc.collect()
     cls.server.stop()
     removeTestTempDir(cls.root)