File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -46,22 +46,25 @@ jobs:
4646
4747 - name : Run the tests
4848 timeout-minutes : 10
49+ if : ${{ !startsWith( matrix.python-version, 'pypy' ) }}
4950 run : |
5051 pytest ipykernel -vv -s --cov ipykernel --cov-branch --cov-report term-missing:skip-covered --durations 10
5152
53+ - name: Run the tests
54+
55+ - name : Run the tests on pypy
56+ timeout-minutes : 15
57+ if : ${{ startsWith( matrix.python-version, 'pypy' ) }}
58+ run : |
59+ pytest -vv ipykernel
60+
5261 - name : Build the docs
5362 if : ${{ matrix.os == 'ubuntu' && matrix.python-version == '3.9'}}
5463 run : |
5564 cd docs
5665 pip install -r requirements.txt
5766 make html
5867
59- - name : Build and check the dist files
60- run : |
61- pip install build twine
62- python -m build .
63- twine check dist/*
64-
6568 - name : Coverage
6669 run : |
6770 codecov
You can’t perform that action at this time.
0 commit comments