Skip to content

Commit 9bc6952

Browse files
committed
fix pytest invocation
1 parent d8e333d commit 9bc6952

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ jobs:
6363
- name: Run the tests with coverage on Ubuntu
6464
if: ${{ matrix.os == 'ubuntu' }}
6565
run: |
66-
pytest -vv --cov jupyter_releaser --cov-branch --cov-report term-missing:skip-covered
66+
python -m pytest -vv --cov jupyter_releaser --cov-branch --cov-report term-missing:skip-covered
6767
6868
- name: Run the tests on Windows and macOS
6969
if: ${{ matrix.os != 'ubuntu' }}
7070
run: |
71-
pytest -vv -s
71+
python -m pytest -vv -s
7272
7373
- name: Verify the Generate Changelog Action
7474
if: ${{ matrix.os == 'ubuntu' }}

0 commit comments

Comments
 (0)