[Fix] Windows paths #1657
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: Integration tests for VizroAI | |
defaults: | |
run: | |
working-directory: vizro-ai | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "vizro-ai/**" | |
- "!vizro-ai/docs/**" | |
env: | |
PYTHONUNBUFFERED: 1 | |
FORCE_COLOR: 1 | |
jobs: | |
test-integration-vizro-ai-fork: | |
if: ${{ github.event.pull_request.head.repo.fork }} | |
name: test-integration-vizro-ai on Py${{ matrix.python-version }} ${{ matrix.label }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: "3.9" | |
hatch-env: all.py3.9 | |
os: ubuntu-latest | |
- python-version: "3.10" | |
hatch-env: all.py3.10 | |
os: ubuntu-latest | |
- python-version: "3.11" | |
hatch-env: all.py3.11 | |
os: ubuntu-latest | |
- python-version: "3.12" | |
hatch-env: all.py3.12 | |
os: ubuntu-latest | |
- python-version: "3.13" | |
hatch-env: all.py3.13 | |
os: ubuntu-latest | |
- python-version: "3.9" | |
hatch-env: lower-bounds | |
os: ubuntu-latest | |
label: lower bounds | |
- python-version: "3.12" | |
hatch-env: all.py3.12 | |
os: windows-latest | |
label: Windows | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Passed fork step | |
run: echo "Success!" | |
test-integration-vizro-ai: | |
if: ${{ ! github.event.pull_request.head.repo.fork }} | |
name: test-integration-vizro-ai on Py${{ matrix.python-version }} ${{ matrix.label }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: "3.9" | |
hatch-env: all.py3.9 | |
os: ubuntu-latest | |
- python-version: "3.10" | |
hatch-env: all.py3.10 | |
os: ubuntu-latest | |
- python-version: "3.11" | |
hatch-env: all.py3.11 | |
os: ubuntu-latest | |
- python-version: "3.12" | |
hatch-env: all.py3.12 | |
os: ubuntu-latest | |
- python-version: "3.13" | |
hatch-env: all.py3.13 | |
os: ubuntu-latest | |
- python-version: "3.9" | |
hatch-env: lower-bounds | |
os: ubuntu-latest | |
label: lower bounds | |
- python-version: "3.12" | |
hatch-env: all.py3.12 | |
os: windows-latest | |
label: Windows | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Hatch | |
run: pip install hatch | |
- name: Show dependency tree | |
run: hatch run ${{ matrix.hatch-env }}:pip tree | |
- name: Run vizro-ai integration tests with pypi vizro | |
run: | | |
export OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} | |
export OPENAI_API_BASE=${{ secrets.OPENAI_API_BASE }} | |
export VIZRO_TYPE=pypi | |
hatch run ${{ matrix.hatch-env }}:test-integration | |
- name: Run vizro-ai integration tests with local vizro | |
run: | | |
export OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} | |
export OPENAI_API_BASE=${{ secrets.OPENAI_API_BASE }} | |
export VIZRO_TYPE=local | |
cd ../vizro-core | |
hatch build | |
cd ../vizro-ai | |
hatch run ${{ matrix.hatch-env }}:pip install ../vizro-core/dist/vizro*.tar.gz | |
hatch run ${{ matrix.hatch-env }}:test-integration | |
- name: Send custom JSON data to Slack | |
id: slack | |
uses: slackapi/[email protected] | |
if: failure() | |
with: | |
payload: | | |
{ | |
"text": "Vizro-ai ${{ matrix.hatch-env }} integration tests build result: ${{ job.status }}\nBranch: ${{ github.head_ref }}\n${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | |
- name: Report artifacts | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: Report-${{ matrix.python-version }}-${{ matrix.label }} | |
path: | | |
/home/runner/work/vizro/vizro/vizro-ai/tests/integration/reports/report*.csv |