File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 79
79
uses : actions/checkout@v2
80
80
81
81
- name : Base Setup
82
- uses : jupyterlab/maintainer-tools/.github/base-setup@v1
82
+ uses : jupyterlab/maintainer-tools/.github/actions/ base-setup@v1
83
83
84
84
- name : Install dependencies
85
85
run : |
89
89
- name : Check types
90
90
run : mypy jupyter_client --exclude '\/tests|kernelspecapp|ioloop|runapp' --install-types --non-interactive
91
91
92
- - name : Run the tests
92
+ - name : Run the tests with coverage
93
+ if : ${{ !startsWith(matrix.python-version, 'pypy') }}
93
94
run : pytest --cov jupyter_client -v jupyter_client
94
95
96
+ - name : Run the tests on pypy
97
+ if : startsWith(matrix.python-version, 'pypy')
98
+ run : pytest -v jupyter_client
99
+
95
100
- name : Build the docs
96
101
run : |
97
102
pip install -r requirements-doc.txt
You can’t perform that action at this time.
0 commit comments