The GitHub Actions job "Tests" on airflow.git has failed. Run started by GitHub user ashb (triggered by ashb).
Head commit for run: 3182303ce50bda6d5d27a6ef4e19450fb4e47eea / Ash Berlin-Taylor <[email protected]> Revert "EdgeModifier refactoring (#21404)" (#23291) This reverts commit ace8c6e942ff5554639801468b971915b7c0e9b9. Fixes apache/airflow#23285 This dag breaks with a cycle as group.end has itself as a downstream otherwise: ```python from pendulum import datetime from airflow.decorators import dag, task, task_group from airflow.utils.edgemodifier import Label @task def begin(): ... @task def end(): ... @dag(start_date=datetime(2022, 1, 1), schedule_interval=None) def task_groups_with_edge_labels(): @task_group def group(): begin() >> end() group() _ = task_groups_with_edge_labels() ``` Report URL: https://github.com/apache/airflow/actions/runs/2234899753 With regards, GitHub Actions via GitBox --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
