We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0245548 commit a9bbae6Copy full SHA for a9bbae6
.github/workflows/pythonpackage.yml
@@ -35,11 +35,11 @@ jobs:
35
- name: Test with pytest and coverage
36
if: ${{ matrix.python-version != 'pypy-3.7' }}
37
run: |
38
- pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered || pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered
+ python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered || python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered
39
- name: Run the tests on pypy
40
if: ${{ matrix.python-version == 'pypy-3.7' }}
41
42
- pytest -vv || pytest -vv -lf
+ python -m pytest -vv || python -m pytest -vv -lf
43
- name: Test Running Server
44
if: startsWith(runner.os, 'Linux')
45
0 commit comments