Remove `python setup.py test` usage.

This commit is contained in:
Fabio Caccamo 2022-12-13 23:29:52 +01:00
parent b8499c1ad8
commit 887ef27626
4 changed files with 2 additions and 6 deletions

View File

@ -35,7 +35,7 @@ jobs:
- name: Run tests
run: |
coverage run --append --source=benedict setup.py test
coverage run --append --source=benedict -m unittest
coverage xml -o ./coverage.xml
- name: Upload coverage to Codecov

View File

@ -896,9 +896,6 @@ tox
# or run tests using unittest
python -m unittest
# or run tests using setuptools
python setup.py test
```
## License

View File

@ -135,5 +135,4 @@ setup(
"Topic :: Text Processing :: Markup :: XML",
"Topic :: Utilities",
],
test_suite="tests",
)

View File

@ -15,6 +15,6 @@ commands =
pip install pip --upgrade
pip install -r requirements.txt
pip install -r requirements-test.txt
coverage run --append --source=benedict setup.py test
coverage run --append --source=benedict -m unittest
coverage report -m
codecov