Skip to content

Update pytest workflow to use minimal installation for python 3.13 #621

Update pytest workflow to use minimal installation for python 3.13

Update pytest workflow to use minimal installation for python 3.13 #621

Workflow file for this run

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.8', '3.9', '3.10', '3.11', '3.12', '3.13']
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: |
python -m pip install --upgrade pip
pip install -U setuptools setuptools_scm wheel
- name: Install dependencies complete
if: matrix.python-version != '3.13'

Check failure on line 36 in .github/workflows/pytest.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pytest.yml

Invalid workflow file

You have an error in your yaml syntax on line 36
pip install -e .[all,testing]
- name: Install dependencies minimal
if: matrix.python-version == '3.13'
pip install -e .[testing]
- name: Unit tests
run: pytest
- name: Notebook flow tests
uses: coactions/setup-xvfb@v1
with:
run: python -m pytest -m demos