From 2b87ef07004fb460af79fd97ecdefdd430b5745f Mon Sep 17 00:00:00 2001 From: "Maarten A. Breddels" Date: Fri, 26 Apr 2024 12:54:57 +0200 Subject: [PATCH] ci: skip running tests on pypy since the environment cannot be solved --- .github/workflows/pythonpackage.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) 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: |