mirror of https://github.com/docker/docker-py.git
				
				
				
			Merge pull request #1922 from yongtang/02232018-cleanup
Cleanup containers during the tests
This commit is contained in:
		
						commit
						8b246db271
					
				|  | @ -36,7 +36,7 @@ class BaseIntegrationTest(unittest.TestCase): | |||
|                 pass | ||||
|         for container in self.tmp_containers: | ||||
|             try: | ||||
|                 client.api.remove_container(container, force=True) | ||||
|                 client.api.remove_container(container, force=True, v=True) | ||||
|             except docker.errors.APIError: | ||||
|                 pass | ||||
|         for network in self.tmp_networks: | ||||
|  |  | |||
|  | @ -47,10 +47,13 @@ class ContainerCollectionTest(BaseIntegrationTest): | |||
|         self.tmp_containers.append(container.id) | ||||
|         container.wait() | ||||
| 
 | ||||
|         name = "container_volume_test" | ||||
|         out = client.containers.run( | ||||
|             "alpine", "cat /insidecontainer/test", | ||||
|             volumes=["%s:/insidecontainer" % path] | ||||
|             volumes=["%s:/insidecontainer" % path], | ||||
|             name=name | ||||
|         ) | ||||
|         self.tmp_containers.append(name) | ||||
|         assert out == b'hello\n' | ||||
| 
 | ||||
|     def test_run_with_named_volume(self): | ||||
|  | @ -66,10 +69,13 @@ class ContainerCollectionTest(BaseIntegrationTest): | |||
|         self.tmp_containers.append(container.id) | ||||
|         container.wait() | ||||
| 
 | ||||
|         name = "container_volume_test" | ||||
|         out = client.containers.run( | ||||
|             "alpine", "cat /insidecontainer/test", | ||||
|             volumes=["somevolume:/insidecontainer"] | ||||
|             volumes=["somevolume:/insidecontainer"], | ||||
|             name=name | ||||
|         ) | ||||
|         self.tmp_containers.append(name) | ||||
|         assert out == b'hello\n' | ||||
| 
 | ||||
|     def test_run_with_network(self): | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue