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 4bec792 [Fix][Common] rewrite code generate,fix bit shift (#6914)
add 0dce68e [python] Add task type python http (#6906)
No new revisions were added by this update.
Summary of changes:
.../src/pydolphinscheduler/constants.py | 2 +
.../src/pydolphinscheduler/core/task.py | 6 +-
.../src/pydolphinscheduler/tasks/http.py | 115 +++++++++++++++++++++
.../src/pydolphinscheduler/tasks/python.py | 47 +++++++++
.../src/pydolphinscheduler/tasks/shell.py | 16 ++-
.../tests/core/test_process_definition.py | 2 +-
.../pydolphinscheduler/tests/core/test_task.py | 30 ++----
.../pydolphinscheduler/tests/tasks/test_http.py | 112 ++++++++++++++++++++
.../pydolphinscheduler/tests/tasks/test_python.py | 115 +++++++++++++++++++++
.../pydolphinscheduler/tests/tasks/test_shell.py | 23 ++++-
10 files changed, 435 insertions(+), 33 deletions(-)
create mode 100644
dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/http.py
create mode 100644
dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/python.py
create mode 100644
dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_http.py
create mode 100644
dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_python.py