Skip to content

Commit 7433762

Browse files
committed
cleanup
1 parent 975a315 commit 7433762

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
uses: actions/checkout@v2
8080

8181
- name: Base Setup
82-
uses: jupyterlab/maintainer-tools/.github/base-setup@v1
82+
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
8383

8484
- name: Install dependencies
8585
run: |
@@ -89,9 +89,14 @@ jobs:
8989
- name: Check types
9090
run: mypy jupyter_client --exclude '\/tests|kernelspecapp|ioloop|runapp' --install-types --non-interactive
9191

92-
- name: Run the tests
92+
- name: Run the tests with coverage
93+
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
9394
run: pytest --cov jupyter_client -v jupyter_client
9495

96+
- name: Run the tests on pypy
97+
if: startsWith(matrix.python-version, 'pypy')
98+
run: pytest -v jupyter_client
99+
95100
- name: Build the docs
96101
run: |
97102
pip install -r requirements-doc.txt

0 commit comments

Comments
 (0)