[Fix] Windows paths #5356
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
name: Unit tests for Vizro | |
defaults: | |
run: | |
working-directory: vizro-core | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: | |
- main | |
env: | |
PYTHONUNBUFFERED: 1 | |
FORCE_COLOR: 1 | |
jobs: | |
test-unit-vizro-core: | |
name: test-unit-vizro-core on Py${{ matrix.config.py }} ${{ matrix.config.label }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- py: "3.9" | |
hatch-env: all.py3.9 | |
os: ubuntu-latest | |
- py: "3.10" | |
hatch-env: all.py3.10 | |
os: ubuntu-latest | |
- py: "3.11" | |
hatch-env: all.py3.11 | |
os: ubuntu-latest | |
- py: "3.12" | |
hatch-env: all.py3.12 | |
os: ubuntu-latest | |
- py: "3.13" | |
hatch-env: all.py3.13 | |
os: ubuntu-latest | |
- py: "3.9" | |
hatch-env: lower-bounds | |
label: lower bounds | |
os: ubuntu-latest | |
- py: "3.12" | |
hatch-env: all.py3.12 | |
label: Windows | |
os: windows-latest | |
is_pr: | |
- ${{ github.event_name == 'pull_request' }} | |
exclude: | |
- is_pr: true | |
config: | |
py: "3.12" | |
hatch-env: all.py3.12 | |
label: Windows | |
os: windows-latest | |
# just use below for labelling and hatch-env so not needed? | |
# will still need windows and lower bounds job though | |
# include: | |
# - python-env: | |
# - py: "3.9" | |
# - hatch-env: lower-bounds | |
# label: lower bounds | |
# - python-version: "3.12" | |
# hatch-env: all.py3.12 | |
# is_pr: false | |
# os: windows-latest | |
# label: Windows | |
# Run Windows jobs only on merges to main | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.config.py }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.config.py }} | |
- name: Install Hatch | |
run: pip install hatch | |
- name: Show dependency tree | |
run: hatch run ${{ matrix.config.hatch-env }}:pip tree | |
- name: Run unit tests | |
run: hatch run ${{ matrix.config.hatch-env }}:test-unit-coverage |