Skip to content

Commit

Permalink
Update pytest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes-mueller authored Dec 2, 2024
1 parent e4a7a82 commit 05e7a06
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
matrix:
os: [ubuntu-20.04, windows-latest]
python-version: ['3.8', '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 }}
Expand All @@ -33,11 +35,11 @@ jobs:
python -m pip install --upgrade pip
pip install -U setuptools setuptools_scm wheel
- name: Install dependencies complete
if: matrix.python-version != '3.13'
pip install -e .[all,testing]
if: matrix.only-minimal != true
run: pip install -e .[all,testing]
- name: Install dependencies minimal
if: matrix.python-version == '3.13'
pip install -e .[testing]
if: matrix.only-minimal == true
run: pip install -e .[testing]
- name: Unit tests
run: pytest
- name: Notebook flow tests
Expand Down

0 comments on commit 05e7a06

Please sign in to comment.