This is an automated email from the ASF dual-hosted git repository.

henry3260 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 92489784eeb Fix airflowctl failed-deps test fixture missing required 
fields (#70776)
92489784eeb is described below

commit 92489784eeb79563c091c659557375b20ba340f1
Author: Justin Pakzad <[email protected]>
AuthorDate: Thu Jul 30 15:19:18 2026 -0400

    Fix airflowctl failed-deps test fixture missing required fields (#70776)
---
 .../airflow_ctl/ctl/commands/test_task_command.py     | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/airflow-ctl/tests/airflow_ctl/ctl/commands/test_task_command.py 
b/airflow-ctl/tests/airflow_ctl/ctl/commands/test_task_command.py
index b819c282653..2f6f23f6120 100644
--- a/airflow-ctl/tests/airflow_ctl/ctl/commands/test_task_command.py
+++ b/airflow-ctl/tests/airflow_ctl/ctl/commands/test_task_command.py
@@ -59,8 +59,11 @@ class TestFailedDeps:
             dag_id=self.dag_id,
             dag_run_id=self.run_id,
             map_index=-1,
+            logical_date=self.logical_date,
             run_after=self.logical_date,
             state=state,
+            start_date=None,
+            end_date=None,
             try_number=1,
             max_tries=0,
             task_display_name=self.task_id,
@@ -68,6 +71,22 @@ class TestFailedDeps:
             pool="default_pool",
             pool_slots=1,
             executor_config="{}",
+            duration=None,
+            hostname=None,
+            unixname=None,
+            queue=None,
+            priority_weight=None,
+            operator=None,
+            operator_name=None,
+            queued_when=None,
+            scheduled_when=None,
+            pid=None,
+            executor=None,
+            note=None,
+            rendered_map_index=None,
+            trigger=None,
+            triggerer_job=None,
+            dag_version=None,
         )
 
     def _make_api_client(

Reply via email to