Merge pull request #3748 from ijc25/master

tearDown the project override at the end of each test case
This commit is contained in:
Aanand Prasad 2016-07-20 16:28:45 +01:00 committed by GitHub
commit 26b819ca67
2 changed files with 6 additions and 0 deletions

View File

@ -114,6 +114,8 @@ class CLITestCase(DockerClientTestCase):
for n in networks:
if n['Name'].startswith('{}_'.format(self.project.name)):
self.client.remove_network(n['Name'])
if hasattr(self, '_project'):
del self._project
super(CLITestCase, self).tearDown()

View File

@ -63,6 +63,10 @@ class DockerClientTestCase(unittest.TestCase):
cls.client = docker_client(Environment(), version)
@classmethod
def tearDownClass(cls):
del cls.client
def tearDown(self):
for c in self.client.containers(
all=True,