This is an automated email from the ASF dual-hosted git repository.
amoghdesai 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 79f8cb6fc81 Fix Airflowctl integration tests broken on main (#60007)
79f8cb6fc81 is described below
commit 79f8cb6fc815699418f1c15210ac7a12fb9634d4
Author: Jens Scheffler <[email protected]>
AuthorDate: Thu Jan 1 03:44:06 2026 +0100
Fix Airflowctl integration tests broken on main (#60007)
---
airflow-ctl-tests/tests/airflowctl_tests/conftest.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow-ctl-tests/tests/airflowctl_tests/conftest.py
b/airflow-ctl-tests/tests/airflowctl_tests/conftest.py
index dc9857246b7..5ace8c57adc 100644
--- a/airflow-ctl-tests/tests/airflowctl_tests/conftest.py
+++ b/airflow-ctl-tests/tests/airflowctl_tests/conftest.py
@@ -277,8 +277,8 @@ def test_commands(login_command, date_param):
"dags list-warning",
# Order of trigger and pause/unpause is important for test stability
because state checked
f"dags trigger --dag-id=example_bash_operator
--logical-date={date_param} --run-after={date_param}",
- "dags pause --dag-id=example_bash_operator",
- "dags unpause --dag-id=example_bash_operator",
+ "dags pause example_bash_operator",
+ "dags unpause example_bash_operator",
# DAG Run commands
f'dagrun get --dag-id=example_bash_operator
--dag-run-id="manual__{date_param}"',
"dags update --dag-id=example_bash_operator --no-is-paused",