Skip to content

Commit 1b9499e

Browse files
authored
Merge pull request #104 from ericsnekbytes/ci_fix_macos_build
CI fix for "Testing nbclassic" on macos 3.7, 3.8, 3.9, 3.10
2 parents 0245548 + a9bbae6 commit 1b9499e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pythonpackage.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
- name: Test with pytest and coverage
3636
if: ${{ matrix.python-version != 'pypy-3.7' }}
3737
run: |
38-
pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered || pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered
38+
python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered || python -m pytest -vv --cov=nbclassic --cov-report term-missing:skip-covered
3939
- name: Run the tests on pypy
4040
if: ${{ matrix.python-version == 'pypy-3.7' }}
4141
run: |
42-
pytest -vv || pytest -vv -lf
42+
python -m pytest -vv || python -m pytest -vv -lf
4343
- name: Test Running Server
4444
if: startsWith(runner.os, 'Linux')
4545
run: |

0 commit comments

Comments
 (0)