File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -63,12 +63,12 @@ jobs:
63
63
- name : Run the tests with coverage on Ubuntu
64
64
if : ${{ matrix.os == 'ubuntu' }}
65
65
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
67
67
68
68
- name : Run the tests on Windows and macOS
69
69
if : ${{ matrix.os != 'ubuntu' }}
70
70
run : |
71
- pytest -vv -s
71
+ python -m pytest -vv -s
72
72
73
73
- name : Verify the Generate Changelog Action
74
74
if : ${{ matrix.os == 'ubuntu' }}
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ classifiers =
25
25
zip_safe = False
26
26
include_package_data = True
27
27
packages = find:
28
+ package_dir =
29
+ " " = " jupyter_releaser"
28
30
python_requires = >=3.7
29
31
install_requires =
30
32
build
You can’t perform that action at this time.
0 commit comments