This is an automated email from the ASF dual-hosted git repository.
rahulvats pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 25fe8181b07 [v3-2-test] Fix e2e tests failing on release branches due
to docker compose pull (#64500) (#64502)
25fe8181b07 is described below
commit 25fe8181b074c2dae71e0a4df7efdc2a2b2e3054
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Mar 31 00:23:32 2026 +0530
[v3-2-test] Fix e2e tests failing on release branches due to docker compose
pull (#64500) (#64502)
(cherry picked from commit 4896e8acdfad419350ed77afb0ba97a97f659d3a)
Co-authored-by: Rahul Vats <[email protected]>
---
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}")