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 d8e333d commit 9bc6952Copy full SHA for 9bc6952
.github/workflows/test.yml
@@ -63,12 +63,12 @@ jobs:
63
- name: Run the tests with coverage on Ubuntu
64
if: ${{ matrix.os == 'ubuntu' }}
65
run: |
66
- pytest -vv --cov jupyter_releaser --cov-branch --cov-report term-missing:skip-covered
+ python -m pytest -vv --cov jupyter_releaser --cov-branch --cov-report term-missing:skip-covered
67
68
- name: Run the tests on Windows and macOS
69
if: ${{ matrix.os != 'ubuntu' }}
70
71
- pytest -vv -s
+ python -m pytest -vv -s
72
73
- name: Verify the Generate Changelog Action
74
0 commit comments