This is an automated email from the ASF dual-hosted git repository.

rahulvats 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 4896e8acdfa Fix e2e tests failing on release branches due to docker 
compose pull (#64500)
4896e8acdfa is described below

commit 4896e8acdfad419350ed77afb0ba97a97f659d3a
Author: Rahul Vats <[email protected]>
AuthorDate: Tue Mar 31 00:20:23 2026 +0530

    Fix e2e tests failing on release branches due to docker compose pull 
(#64500)
---
 airflow-e2e-tests/tests/airflow_e2e_tests/conftest.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow-e2e-tests/tests/airflow_e2e_tests/conftest.py 
b/airflow-e2e-tests/tests/airflow_e2e_tests/conftest.py
index 32e1fb0e21c..04fe9eace59 100644
--- a/airflow-e2e-tests/tests/airflow_e2e_tests/conftest.py
+++ b/airflow-e2e-tests/tests/airflow_e2e_tests/conftest.py
@@ -158,9 +158,9 @@ def spin_up_airflow_environment(tmp_path_factory: 
pytest.TempPathFactory):
     #
     os.environ["FERNET_KEY"] = generate_fernet_key_string()
 
-    # If we are using the image from ghcr.io/apache/airflow/main we do not pull
+    # If we are using the image from ghcr.io/apache/airflow we do not pull
     # as it is already available and loaded using prepare_breeze_and_image 
step in workflow
-    pull = False if DOCKER_IMAGE.startswith("ghcr.io/apache/airflow/main/") 
else True
+    pull = False if DOCKER_IMAGE.startswith("ghcr.io/apache/airflow/") else 
True
 
     try:
         console.print(f"[blue]Spinning up airflow environment using 
{DOCKER_IMAGE}")

Reply via email to