summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 9 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 2040825..ff0ff14 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,6 +2,7 @@
envlist =
lint,
py35,py36,py37,py38,pypy3,
+ py39,
docs,
coverage
isolated_build = True
@@ -31,6 +32,7 @@ depends = py38
skip_install = True
commands =
black --check --diff .
+ isort --check-only --df src/waitress tests
check-manifest
# flake8 src/waitress/ tests
# build sdist/wheel
@@ -38,12 +40,13 @@ commands =
twine check dist/*
deps =
black
- readme_renderer
check-manifest
- pep517
- twine
flake8
flake8-bugbear
+ isort
+ pep517
+ readme_renderer
+ twine
[testenv:docs]
whitelist_externals =
@@ -61,12 +64,14 @@ deps =
flake8
flake8-bugbear
-[testenv:run-black]
+[testenv:run-format]
skip_install = True
commands =
+ isort src/waitress tests
black .
deps =
black
+ isort
[testenv:build]
skip_install = true