Skip to content

Commit

Permalink
Merge pull request #106 from ericsnekbytes/ci_fix_pypy_macos
Browse files Browse the repository at this point in the history
CI fix for "Testing nbclassic" on macos / pypy
  • Loading branch information
echarles committed Jun 6, 2022
2 parents 69ca14b + 4ddeae6 commit 462e202
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"]
exclude:
- os: windows
python-version: pypy-3.7
python-version: pypy-3.8
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -33,11 +33,11 @@ jobs:
run: |
jupyter nbclassic -h
- name: Test with pytest and coverage
if: ${{ matrix.python-version != 'pypy-3.7' }}
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.7' }}
if: ${{ matrix.python-version == 'pypy-3.8' }}
run: |
python -m pytest -vv || python -m pytest -vv -lf
- name: Test Running Server
Expand Down

0 comments on commit 462e202

Please sign in to comment.