fix: all_database_access should enable access to all datasets/charts/dashboards #45964
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python Misc unit tests | |
name: Python Misc | |
on: | |
push: | |
branches: | |
- "master" | |
- "[0-9].[0-9]" | |
pull_request: | |
types: [synchronize, opened, reopened, ready_for_review] | |
# cancel previous workflow jobs for PRs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
python-lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
submodules: recursive | |
- name: Check for file changes | |
id: check | |
uses: ./.github/actions/change-detector/ | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Python | |
uses: ./.github/actions/setup-backend/ | |
if: steps.check.outputs.python | |
- name: pylint | |
if: steps.check.outputs.python | |
# `-j 0` run Pylint in parallel | |
run: pylint -j 0 superset | |
babel-extract: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
submodules: recursive | |
- name: Check for file changes | |
id: check | |
uses: ./.github/actions/change-detector/ | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Python | |
if: steps.check.outputs.python | |
uses: ./.github/actions/setup-backend/ | |
- name: Test babel extraction | |
if: steps.check.outputs.python | |
run: flask fab babel-extract --target superset/translations --output superset/translations/messages.pot --config superset/translations/babel.cfg -k _,__,t,tn,tct |