From a591145b485bc2e054977b7b9cdb7b7d503bbbe0 Mon Sep 17 00:00:00 2001 From: dezhidki Date: Fri, 4 Aug 2023 12:10:42 +0300 Subject: [PATCH] Fix test log output regression --- cli/commands/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/commands/test.py b/cli/commands/test.py index dbc176e373..71a0a10518 100644 --- a/cli/commands/test.py +++ b/cli/commands/test.py @@ -88,7 +88,7 @@ def run(args: Arguments) -> None: env["NEW_SCREENSHOTS"] = "1" res = run_compose( - ["up", "--exit-code-from", "tests", "--abort-on-container-exit", "tests"], + ["up", "--exit-code-from", "tests", "--attach", "tests", "tests"], "test", override_profile=False, extra_env=env,