Skip to content

Commit a7db162

Browse files
committed
use pip instead of setuptools in tests
1 parent 217e9ce commit a7db162

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
pip install --upgrade -r pytest_requirements.txt
9898
- name: Build package and install develop
9999
run: |
100-
python setup.py develop -v clean
100+
pip install -e .
101101
- name: Test with pytest
102102
run: |
103103
py.test --cov-report= --cov=exec_helpers test

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ maintainers=[
2525
dynamic = ["version", "classifiers", "dependencies"]
2626

2727
[tool.setuptools]
28-
packages= ["exec_helpers"]
28+
packages= ["exec_helpers", "exec_helpers.async_api"]
2929
package-data={"exec_helpers"=["py.typed"], "*"=["*.pyi"]}
3030

3131
[tool.setuptools.dynamic]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ deps =
2828

2929
commands =
3030
pip freeze
31-
python setup.py develop -v clean
31+
pip install -e .
3232
py.test --cov-report html --self-contained-html --html=report.html --cov=exec_helpers
3333
coverage report
3434
; coverage report --fail-under 85

0 commit comments

Comments
 (0)