We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d81b7b commit 0b941baCopy full SHA for 0b941ba
.github/workflows/python-tests.yml
@@ -33,8 +33,8 @@ jobs:
33
- name: Run the tests
34
if: ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.os, 'windows') }}
35
run: |
36
- args="-vv --cov jupyter_server --cov-branch --cov-report term-missing:skip-covered --cov-fail-under 70"
37
- python -m pytest $args || python -m pytest $args --lf
+ args="-vv --cov jupyter_server --cov-branch --cov-report term-missing:skip-covered"
+ python -m pytest $args --cov-fail-under 70 || python -m pytest $args --lf
38
- name: Run the tests on pypy and windows
39
if: ${{ startsWith(matrix.python-version, 'pypy') || startsWith(matrix.os, 'windows') }}
40
0 commit comments