You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2021/12/22 03:06:51 UTC

[dolphinscheduler] branch dev updated (4c49a8b -> e23a484)

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

kirs pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git.


    from 4c49a8b  [Feature][UI Next]: Rearrange the routing and format the code (#7533)
     add e23a484  [python] Add task condition (#7505)

No new revisions were added by this update.

Summary of changes:
 .../examples/task_conditions_example.py            |  55 +++
 .../src/pydolphinscheduler/constants.py            |   1 +
 .../src/pydolphinscheduler/tasks/condition.py      | 185 +++++++++
 .../src/pydolphinscheduler/tasks/dependent.py      |   3 -
 .../tests/tasks/test_condition.py                  | 439 +++++++++++++++++++++
 5 files changed, 680 insertions(+), 3 deletions(-)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/examples/task_conditions_example.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/condition.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_condition.py