diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 76b95551..cf3f7136 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -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 }} @@ -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