Skip to content

Commit 9e46aea

Browse files
committed
more cleanup
1 parent edd9e43 commit 9e46aea

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)