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 977cf8c19ce Fix progress retrieval when parallel airflow-core tests 
are run (#48100)
977cf8c19ce is described below

commit 977cf8c19ce82dc72ae92b17223c9ef867de1c7c
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Mar 22 18:37:49 2025 +0100

    Fix progress retrieval when parallel airflow-core tests are run (#48100)
---
 dev/breeze/src/airflow_breeze/commands/testing_commands.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/commands/testing_commands.py 
b/dev/breeze/src/airflow_breeze/commands/testing_commands.py
index a0b949d9d3a..29fa758fb03 100644
--- a/dev/breeze/src/airflow_breeze/commands/testing_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/testing_commands.py
@@ -154,8 +154,8 @@ def docker_compose_tests(
     sys.exit(return_code)
 
 
-TEST_PROGRESS_REGEXP = 
r"tests/.*|providers/.*/tests/.*|task-sdk/tests/.*|.*=====.*"
-PERCENT_TEST_PROGRESS_REGEXP = r"^tests/.*\[[ \d%]*\].*|^\..*\[[ \d%]*\].*"
+TEST_PROGRESS_REGEXP = 
r"airflow-core/tests/.*|providers/.*/tests/.*|task-sdk/tests/.*|.*=====.*"
+PERCENT_TEST_PROGRESS_REGEXP = r"^airflow-core/tests/.*\[[ \d%]*\].*|^\..*\[[ 
\d%]*\].*"
 
 
 def _run_test(

Reply via email to