@@ -57,12 +57,12 @@ jobs:
57
57
- name : Run the tests
58
58
if : ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.os, 'windows') }}
59
59
run : |
60
- args="-vv -raXs -- cov jupyter_server --cov-branch --cov-report term-missing:skip-covered --durations 10 --color=yes --cov-fail-under 70"
60
+ args="-vv -- cov jupyter_server --cov-branch --cov-report term-missing:skip-covered --cov-fail-under 70"
61
61
python -m pytest $args || python -m pytest $args --lf
62
62
- name : Run the tests on pypy and windows
63
63
if : ${{ startsWith(matrix.python-version, 'pypy') || startsWith(matrix.os, 'windows') }}
64
64
run : |
65
- python -m pytest -vv -raXs || python -m pytest -vv -raXs --lf
65
+ python -m pytest -vv || python -m pytest -vv --lf
66
66
- name : Coverage
67
67
run : |
68
68
codecov
88
88
pip install -r doc-requirements.txt
89
89
make html SPHINXOPTS="-W"
90
90
91
- test_miniumum_versions :
91
+ test_minimum_versions :
92
92
name : Test Minimum Versions
93
93
timeout-minutes : 20
94
94
runs-on : ubuntu-latest
@@ -102,8 +102,7 @@ jobs:
102
102
uses : jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
103
103
- name : Run the unit tests
104
104
run : |
105
- args="-vv -raXs --durations 10 --color=yes"
106
- pytest $args || pytest $args --lf
105
+ pytest -vv || pytest -vv --lf
107
106
108
107
test_prereleases :
109
108
name : Test Prereleases
@@ -123,8 +122,7 @@ jobs:
123
122
pip check
124
123
- name : Run the tests
125
124
run : |
126
- args="-vv -raXs --durations 10 --color=yes"
127
- pytest $args || pytest $args --lf
125
+ pytest -vv || pytest -vv --lf
128
126
129
127
make_sdist :
130
128
name : Make SDist
@@ -164,5 +162,4 @@ jobs:
164
162
- name : Run Test
165
163
run : |
166
164
cd sdist/test
167
- args="-vv -raXs --durations 10 --color=yes"
168
- pytest $args || pytest $args --lf
165
+ pytest -vv || pytest -vv --lf
0 commit comments