Update pytest.yml #652
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: Testsuite | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
- ci-debug | |
schedule: | |
- cron: "0 9 * * 0" | |
jobs: | |
testsuite: | |
name: Run testsuite | |
runs-on: ${{ matrix.os }} | |
env: | |
MPLBACKEND: svg | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, windows-latest] | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
include: | |
- python-version: "3.13" | |
only-minimal: true | |
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 python essentials | |
run: | | |
sudo apt-get install clang | |
python -m pip install --upgrade pip uv | |
uv venv --python ${{ matrix.python-version }} | |
source ./.venv/bin/activate | |
uv pip install -U setuptools setuptools_scm wheel | |
- name: Install dependencies complete | |
if: matrix.only-minimal != true | |
run: uv pip install -e .[all,testing] | |
- name: Install dependencies minimal | |
if: matrix.only-minimal == true | |
run: uv pip install -e .[testing] | |
- name: Unit tests | |
run: pytest | |
- name: Notebook flow tests | |
if: matrix.only-minimal != true | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: python -m pytest -m demos |