This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 357d35c76d Output for quarantined tests is not hidden by default in CI
(#32975)
357d35c76d is described below
commit 357d35c76d2cd54e5863416e23044bc2a954f81d
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Jul 31 20:27:44 2023 +0200
Output for quarantined tests is not hidden by default in CI (#32975)
When we ran quarantined tests the output of the tests was
hidden, because we are not running the tests in parallell and only
parallel tests are summarising test results after they finish and
hide the execution inside the CI group.
This change causes "non-parallel" tests in breeze to print command
output outside of the group, which will mean that we will see the
test results without having to unfold the group.
---
dev/breeze/src/airflow_breeze/commands/testing_commands.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev/breeze/src/airflow_breeze/commands/testing_commands.py
b/dev/breeze/src/airflow_breeze/commands/testing_commands.py
index 90109b90f4..8cf37487a9 100644
--- a/dev/breeze/src/airflow_breeze/commands/testing_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/testing_commands.py
@@ -452,6 +452,7 @@ def command_for_tests(
db_reset=db_reset,
output=None,
test_timeout=test_timeout,
+ output_outside_the_group=True,
skip_docker_compose_down=skip_docker_compose_down,
)
sys.exit(returncode)