Add tox for running tests on python 3.8.

This commit is contained in:
Chris Berkhout 2021-10-05 13:30:53 +02:00
parent 2249917494
commit 15a39bb8a0
5 changed files with 125 additions and 1 deletions

View file

@ -35,3 +35,7 @@ pre-commit: ## Checks to run before each commit
poetry run isort src tests --check
poetry run black src tests --check
poetry run flake8 src tests
.PHONY: tox
tox: ## Run tests via tox
poetry run tox