[Feat] Enable dynamic filter to be updated from data_frame parameters - implicit configuration API #588
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
name: e2e vizro dom elements tests for Vizro | |
defaults: | |
run: | |
working-directory: vizro-core | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: | |
- main | |
env: | |
PYTHONUNBUFFERED: 1 | |
FORCE_COLOR: 1 | |
PYTHON_VERSION: "3.12" | |
jobs: | |
test-e2e-vizro-dom-elements: | |
name: test-e2e-vizro-dom-elements on Py${{ matrix.config.python-version }} ${{ matrix.config.label }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- python-version: "3.12" | |
hatch-env: all.py3.12 | |
- python-version: "3.9" | |
hatch-env: lower-bounds | |
label: lower bounds | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.config.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.config.python-version }} | |
- name: Install Hatch | |
run: pip install hatch | |
- name: Install pixelmatch | |
run: sudo npm install pixelmatch -g | |
- name: Show dependency tree | |
run: hatch run pip tree | |
- name: Run e2e vizro-dom-elements tests | |
run: hatch run test-e2e-vizro-dom-elements | |
- name: Create artifacts and slack notifications | |
if: failure() | |
uses: ./.github/actions/failed-artifacts-and-slack-notifications | |
env: | |
TESTS_NAME: Vizro e2e vizro dom elements tests | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
PROJECT_PATH: /home/runner/work/vizro/vizro/vizro-core/ |