You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by di...@apache.org on 2021/04/01 16:46:41 UTC

[airflow] branch master updated (ee2d6c5 -> da897c9)

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

dimberman pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from ee2d6c5  Make app creation session- or class-wide when possible to make tests faster (#14878)
     add da897c9  Taskgroup decorator (#15034)

No new revisions were added by this update.

Summary of changes:
 airflow/decorators/__init__.py                     |   1 +
 airflow/decorators/task_group.py                   |  72 ++++
 .../example_dags/example_task_group_decorator.py   |  73 ++++
 airflow/utils/task_group.py                        |  28 +-
 docs/apache-airflow/concepts.rst                   |   8 +
 docs/spelling_wordlist.txt                         |   1 +
 tests/utils/test_task_group.py                     | 371 +++++++++++++++++++++
 7 files changed, 550 insertions(+), 4 deletions(-)
 create mode 100644 airflow/decorators/task_group.py
 create mode 100644 airflow/example_dags/example_task_group_decorator.py