ephraimbuddy opened a new issue, #30225:
URL: https://github.com/apache/airflow/issues/30225

   Ensure that this works:
   
   ```python
   @setup
   def mytask():
       print("I am a setup task")
   
   with dag_maker() as dag:
       mytask.override(task_id='newtask')
   
   assert len(dag.task_group.children) == 1
   setup_task = dag.task_group.children["newtask"]
   assert setup_task._is_setup
   ```
   and teardown also works


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to