We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b67880 commit 48deee3Copy full SHA for 48deee3
1 file changed
src/pytest_databases/_service.py
@@ -69,7 +69,7 @@ def _stop_all_containers(client: DockerClient) -> None:
69
try:
70
if container.status == "running":
71
container.kill()
72
- elif container.status in {"stopped", "dead"}:
+ elif container.status in {"created", "stopped", "dead"}:
73
container.remove()
74
elif container.status == "removing":
75
continue
0 commit comments