def tearDown(self): run_test_server.stop() # llfuse.close is buggy, so use fusermount instead. #llfuse.close(unmount=True) count = 0 success = 1 while (count < 9 and success != 0): success = subprocess.call(["fusermount", "-u", self.mounttmp]) time.sleep(0.5) count += 1 os.rmdir(self.mounttmp) shutil.rmtree(self.keeptmp)
def tearDownClass(cls): run_test_server.stop() run_test_server.stop_keep()
def tearDownClass(cls): run_test_server.stop()
def tearDown(self): run_test_server.stop() super(FuseGroupsTest, self).tearDown()
def tearDown(self): run_test_server.stop() super(FuseTagsUpdateTestPoll, self).tearDown()
def tearDown(self): run_test_server.stop() super(FuseTagsUpdateTestWebsockets, self).tearDown()
def stop(): run_test_server.stop_keep() run_test_server.stop()
def tearDownClass(cls): super(KeepTestCase, cls).tearDownClass() run_test_server.stop() run_test_server.stop_keep()
def tearDown(self): run_test_server.stop()