update tox calls to use run, update all pip calls to use python -m (#86)

This commit is contained in:
Paul Robinson
2023-04-25 15:20:55 -06:00
committed by pacrob
parent da9b95f37c
commit cc24e7e468
4 changed files with 10 additions and 8 deletions

View File

@ -28,7 +28,7 @@ clean-pyc:
find . -name '__pycache__' -exec rm -rf {} +
lint:
tox -e lint
tox run -e lint
lint-roll:
isort <MODULE_NAME> tests
@ -39,7 +39,7 @@ test:
pytest tests
test-all:
tox
tox run
build-docs:
sphinx-apidoc -o docs/ . setup.py "*conftest*"