File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,11 +44,11 @@ jobs:
44
44
pip freeze
45
45
pip check
46
46
- name : Run the tests
47
- if : ${{ !startsWith( matrix.python-version, 'pypy3 ' ) }}
47
+ if : ${{ !startsWith( matrix.python-version, 'pypy ' ) }}
48
48
run : |
49
49
pytest -vv --cov jupyter_server --cov-branch --cov-report term-missing:skip-covered
50
50
- name : Run the tests on pypy
51
- if : ${{ startsWith( matrix.python-version, 'pypy3 ' ) }}
51
+ if : ${{ startsWith( matrix.python-version, 'pypy ' ) }}
52
52
run : |
53
53
pytest -vv
54
54
- name : Install the Python dependencies for the examples
58
58
run : |
59
59
pytest examples/simple/tests/test_handlers.py --confcutdir=$PWD
60
60
- name : Coverage
61
- if : ${{ !startsWith( matrix.python-version, 'pypy3 ' ) }}
61
+ if : ${{ !startsWith( matrix.python-version, 'pypy ' ) }}
62
62
run : |
63
63
codecov
You can’t perform that action at this time.
0 commit comments