Skip to content

Commit b908f55

Browse files
vidartfSteven Silvester
authored andcommitted
Fix the fix
1 parent e164bc7 commit b908f55

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
pip freeze
4545
pip check
4646
- name: Run the tests
47-
if: ${{ !startsWith( matrix.python-version, 'pypy3' ) }}
47+
if: ${{ !startsWith( matrix.python-version, 'pypy' ) }}
4848
run: |
4949
pytest -vv --cov jupyter_server --cov-branch --cov-report term-missing:skip-covered
5050
- name: Run the tests on pypy
51-
if: ${{ startsWith( matrix.python-version, 'pypy3' ) }}
51+
if: ${{ startsWith( matrix.python-version, 'pypy' ) }}
5252
run: |
5353
pytest -vv
5454
- name: Install the Python dependencies for the examples
@@ -58,6 +58,6 @@ jobs:
5858
run: |
5959
pytest examples/simple/tests/test_handlers.py --confcutdir=$PWD
6060
- name: Coverage
61-
if: ${{ !startsWith( matrix.python-version, 'pypy3' ) }}
61+
if: ${{ !startsWith( matrix.python-version, 'pypy' ) }}
6262
run: |
6363
codecov

0 commit comments

Comments
 (0)