mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-27 17:25:08 +00:00
Suppress docker compose down errors in cleanup
This commit is contained in:
parent
af38c46717
commit
c6717a1720
1 changed files with 3 additions and 1 deletions
|
|
@ -50,7 +50,9 @@ def frappe_setup(compose: Compose):
|
||||||
|
|
||||||
compose("up", "-d", "--quiet-pull")
|
compose("up", "-d", "--quiet-pull")
|
||||||
yield
|
yield
|
||||||
compose.stop()
|
|
||||||
|
with suppress(subprocess.CalledProcessError):
|
||||||
|
compose.stop()
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
@pytest.fixture(scope="session")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue