-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for tested task group @glazunov996 (#292)
Resolves Nested Subgroups #119 issue Original PR: #141 Co-authored-by: Kuris <[email protected]> closes: #119 Example YML DAG ``` default: default_args: owner: default_owner retries: 1 retry_delay_sec: 300 start_date: 2024-01-01 default_view: tree max_active_runs: 1 schedule_interval: 0 1 * * * example_task_group: description: "this dag uses task groups" task_groups: task_group_1: tooltip: "this is a task group" dependencies: [task_1] task_group_2: tooltip: "this is a task group" parent_group_name: task_group_1 tasks: task_1: operator: airflow.operators.bash_operator.BashOperator bash_command: "echo 1" task_2: operator: airflow.operators.bash_operator.BashOperator bash_command: "echo 2" task_group_name: task_group_1 task_4: operator: airflow.operators.bash_operator.BashOperator bash_command: "echo 4" task_group_name: task_group_2 ```
- Loading branch information
1 parent
984e8cd
commit 7626fa6
Showing
2 changed files
with
100 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters