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,6 +50,8 @@ def frappe_setup(compose: Compose):
compose("up", "-d", "--quiet-pull")
yield
with suppress(subprocess.CalledProcessError):
compose.stop()