Skip to content

Commit

Permalink
ci: skip running tests on pypy since the environment cannot be solved
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Apr 26, 2024
1 parent fbd2b1e commit 2b87ef0
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 2b87ef0

Please sign in to comment.