You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/09/22 03:03:38 UTC

[dolphinscheduler] branch dev updated (fba5a8eaa0 -> cc492c3e13)

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

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


    from fba5a8eaa0 Fix insert command error due to the id is not null (#12092)
     add cc492c3e13 [Feature] Add CURD to the project/tenant/user section of the python-DS (#11162)

No new revisions were added by this update.

Summary of changes:
 .../dolphinscheduler/api/python/PythonGateway.java |  27 ++++--
 .../api/service/impl/UsersServiceImpl.java         |   1 +
 .../api/service/UsersServiceTest.java              |   4 +-
 .../src/pydolphinscheduler/java_gateway.py         |  64 ++++++++++++
 .../src/pydolphinscheduler/models/base_side.py     |   8 ++
 .../src/pydolphinscheduler/models/project.py       |  31 ++++++
 .../src/pydolphinscheduler/models/tenant.py        |  38 +++++++-
 .../src/pydolphinscheduler/models/user.py          |  55 ++++++++++-
 .../tests/integration/conftest.py                  |   2 +-
 .../tests/integration/test_project.py              |  78 +++++++++++++++
 .../tests/integration/test_tenant.py               |  86 +++++++++++++++++
 .../tests/integration/test_user.py                 | 107 +++++++++++++++++++++
 12 files changed, 487 insertions(+), 14 deletions(-)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/integration/test_project.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/integration/test_tenant.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/integration/test_user.py