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 1c41180381a Minor fixes to the release candidate command (#61764)
1c41180381a is described below
commit 1c41180381a459b77b6d964229bdc19a4a7ec0b3
Author: Ephraim Anierobi <[email protected]>
AuthorDate: Wed Feb 11 13:55:15 2026 +0100
Minor fixes to the release candidate command (#61764)
Not sure why the ls was failing but we can do without it
---
dev/breeze/src/airflow_breeze/commands/release_candidate_command.py | 4 +---
dev/breeze/tests/test_release_candidate_command.py | 5 +----
2 files changed, 2 insertions(+), 7 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 e01adbc54cc..184a8625e67 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
@@ -534,9 +534,7 @@ def move_artifacts_to_svn(
check=True,
shell=True,
)
- console_print("[success]Moved artifacts to SVN:")
- run_command([f"ls {version}/"])
- run_command([f"ls task-sdk/{task_sdk_version}/"])
+ console_print("[success]Moved artifacts to SVN")
def push_artifacts_to_asf_repo(version, task_sdk_version, repo_root):
diff --git a/dev/breeze/tests/test_release_candidate_command.py
b/dev/breeze/tests/test_release_candidate_command.py
index 729f94c06e6..8f50ab526bb 100644
--- a/dev/breeze/tests/test_release_candidate_command.py
+++ b/dev/breeze/tests/test_release_candidate_command.py
@@ -621,10 +621,7 @@ def
test_move_artifacts_to_svn_completes_successfully(monkeypatch, rc_cmd):
and kwargs.get("shell") is True
for cmd, kwargs in run_command_calls
)
- assert "[success]Moved artifacts to SVN:" in console_messages
- # Verify ls commands
- assert any(cmd == [f"ls {version}/"] for cmd, kwargs in run_command_calls)
- assert any(cmd == [f"ls task-sdk/{task_sdk_version}/"] for cmd, kwargs in
run_command_calls)
+ assert "[success]Moved artifacts to SVN" in console_messages
def
test_push_artifacts_to_asf_repo_returns_early_when_user_declines(monkeypatch,
rc_cmd):