mirror of https://github.com/docker/compose.git
Remove remaining containers on test_build_run
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
This commit is contained in:
parent
79557e3d3a
commit
8a9575bd0d
|
@ -793,6 +793,9 @@ class CLITestCase(DockerClientTestCase):
|
|||
]
|
||||
assert containers
|
||||
|
||||
for c in self.project.client.containers(all=True):
|
||||
self.addCleanup(self.project.client.remove_container, c, force=True)
|
||||
|
||||
def test_build_shm_size_build_option(self):
|
||||
pull_busybox(self.client)
|
||||
self.base_dir = 'tests/fixtures/build-shm-size'
|
||||
|
|
Loading…
Reference in New Issue