You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2022/10/31 12:32:57 UTC

[superset] branch master updated (c9470cac91 -> a02a778cc3)

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

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


    from c9470cac91 fix: dashboard api cache decorator (#21964)
     add a02a778cc3 feat(reports): execute as other than selenium user (#21931)

No new revisions were added by this update.

Summary of changes:
 docs/docs/installation/alerts-reports.mdx          |  28 +++-
 superset/config.py                                 |  19 +++
 superset/reports/commands/exceptions.py            |   4 +-
 superset/reports/commands/execute.py               |  50 +++---
 superset/reports/types.py                          |  10 ++
 superset/reports/utils.py                          |  71 ++++++++
 superset/utils/machine_auth.py                     |   8 +-
 superset/utils/screenshots.py                      |  16 +-
 superset/utils/webdriver.py                        |  12 +-
 tests/integration_tests/reports/commands_tests.py  |  92 +++++++++--
 tests/integration_tests/reports/scheduler_tests.py |  33 +++-
 tests/integration_tests/reports/utils.py           |  67 ++++----
 .../unit_tests/reports}/__init__.py                |   0
 tests/unit_tests/reports/test_utils.py             | 178 +++++++++++++++++++++
 14 files changed, 501 insertions(+), 87 deletions(-)
 create mode 100644 superset/reports/utils.py
 copy {superset/advanced_data_type => tests/unit_tests/reports}/__init__.py (100%)
 create mode 100644 tests/unit_tests/reports/test_utils.py