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 bf678f2 commit d22789cCopy full SHA for d22789c
.github/workflows/main.yml
@@ -71,8 +71,8 @@ jobs:
71
- name: Run the tests
72
if: ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.os, 'windows') }}
73
run: |
74
- args="-vv --cov jupyter_client --cov-branch --cov-report term-missing:skip-covered --cov-fail-under 70"
75
- python -m pytest $args || python -m pytest $args --lf
+ args="-vv --cov jupyter_client --cov-branch --cov-report term-missing:skip-covered"
+ python -m pytest $args --cov-fail-under 70 || python -m pytest $args --lf
76
- name: Run the tests on pypy and windows
77
if: ${{ startsWith(matrix.python-version, 'pypy') || startsWith(matrix.os, 'windows') }}
78
0 commit comments