Skip to content

Commit 2a10db6

Browse files
authored
Merge pull request #270 from blink1073/fix-package-include
2 parents bf20b46 + 9bc6952 commit 2a10db6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-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' }}

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ classifiers =
2525
zip_safe = False
2626
include_package_data = True
2727
packages = find:
28+
package_dir =
29+
"" = "jupyter_releaser"
2830
python_requires = >=3.7
2931
install_requires =
3032
build

0 commit comments

Comments
 (0)