diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 865d975e2..d63755a91 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -13,10 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, macos-12.0, windows-2022] - python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"] - exclude: - - os: windows - python-version: pypy-3.8 + python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - name: Checkout uses: actions/checkout@v2 @@ -33,13 +30,8 @@ jobs: run: | jupyter nbclassic -h - name: Test with pytest and coverage - if: ${{ matrix.python-version != 'pypy-3.8' }} run: | python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered || python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered - - name: Run the tests on pypy - if: ${{ matrix.python-version == 'pypy-3.8' }} - run: | - python -m pytest -vv || python -m pytest -vv -lf - name: Test Running Server if: startsWith(runner.os, 'Linux') run: |