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 3c85a2b21e1 [v3-1-test] Minor fixes to the release candidate command
(#61764) (#61772)
3c85a2b21e1 is described below
commit 3c85a2b21e14862109e630f8f0154a19a0687fdf
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Feb 18 22:24:22 2026 +0100
[v3-1-test] Minor fixes to the release candidate command (#61764) (#61772)
Not sure why the ls was failing but we can do without it
(cherry picked from commit 1c41180381a459b77b6d964229bdc19a4a7ec0b3)
Co-authored-by: Ephraim Anierobi <[email protected]>
---
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 87ed11974cf..69ddf9129f3 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
@@ -531,9 +531,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):