Skip to content

Commit

Permalink
Fix the fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vidartf authored Aug 24, 2021
1 parent 43a4276 commit 1aa5512
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
pip freeze
pip check
- name: Run the tests
if: ${{ !startsWith( matrix.python-version, 'pypy3' ) }}
if: ${{ !startsWith( matrix.python-version, 'pypy' ) }}
run: |
pytest -vv --cov jupyter_server --cov-branch --cov-report term-missing:skip-covered
- name: Run the tests on pypy
if: ${{ startsWith( matrix.python-version, 'pypy3' ) }}
if: ${{ startsWith( matrix.python-version, 'pypy' ) }}
run: |
pytest -vv
- name: Install the Python dependencies for the examples
Expand All @@ -58,6 +58,6 @@ jobs:
run: |
pytest examples/simple/tests/test_handlers.py --confcutdir=$PWD
- name: Coverage
if: ${{ !startsWith( matrix.python-version, 'pypy3' ) }}
if: ${{ !startsWith( matrix.python-version, 'pypy' ) }}
run: |
codecov

0 comments on commit 1aa5512

Please sign in to comment.