This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 25e9df747e3 [v3-1-test] Update path creation for simulation of SVC
checkout in CI (#61692) (#61722)
25e9df747e3 is described below
commit 25e9df747e38e52872e66d98747cc809277a5f79
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Feb 10 11:36:49 2026 +0100
[v3-1-test] Update path creation for simulation of SVC checkout in CI
(#61692) (#61722)
(cherry picked from commit 708777c2059bd5fbe398a9038285d9415d90fa82)
Co-authored-by: Bugra Ozturk <[email protected]>
---
dev/breeze/src/airflow_breeze/commands/release_candidate_command.py | 2 +-
dev/breeze/tests/test_release_candidate_command.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
index faa5d299e6a..c20e2e5b0b1 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
@@ -477,7 +477,7 @@ def clone_asf_repo(version, repo_root):
if is_ci_environment():
console_print("[info]Running in CI environment - simulating SVN
checkout")
# Create empty directory structure to simulate svn checkout
- run_command(["mkdir", "-p", "asf-dist/dev/airflow"], check=True)
+ run_command(["mkdir", "-p", f"{repo_root}/asf-dist/dev/airflow"],
check=True)
console_print("[success]Simulated ASF repo checkout in CI")
return
diff --git a/dev/breeze/tests/test_release_candidate_command.py
b/dev/breeze/tests/test_release_candidate_command.py
index 1335322fc7b..4bedc47daab 100644
--- a/dev/breeze/tests/test_release_candidate_command.py
+++ b/dev/breeze/tests/test_release_candidate_command.py
@@ -85,7 +85,7 @@ def test_clone_asf_repo(monkeypatch, rc_cmd):
# Should use mkdir -p to create directory structure
assert any(
- cmd == ["mkdir", "-p", "asf-dist/dev/airflow"] and
kwargs.get("check") is True
+ cmd == ["mkdir", "-p", f"{repo_root}/asf-dist/dev/airflow"] and
kwargs.get("check") is True
for cmd, kwargs in run_command_calls
)