Suppress docker compose down errors in cleanup

This commit is contained in:
Lev Vereshchagin 2022-05-01 16:53:44 +03:00
parent af38c46717
commit c6717a1720

View file

@ -50,7 +50,9 @@ def frappe_setup(compose: Compose):
compose("up", "-d", "--quiet-pull")
yield
compose.stop()
with suppress(subprocess.CalledProcessError):
compose.stop()
@pytest.fixture(scope="session")