summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-05-15 21:09:16 -0500
committerMichael Merickel <michael@merickel.org>2022-05-15 21:23:28 -0500
commit32fb766fa01d436b98e7687f717f6e71c58b9a83 (patch)
tree2fa125334fea9a1ebdbd5381f875368636462afc /tox.ini
parentac91794dfb7617b473c9d06d04900debfcdf585e (diff)
downloadpastedeploy-git-32fb766fa01d436b98e7687f717f6e71c58b9a83.tar.gz
blackify/isort/flake8
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini16
1 files changed, 16 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 8df803b..18f23f6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -34,16 +34,32 @@ extras =
[testenv:lint]
skip_install = True
commands =
+ isort --check-only --df src/paste tests
+ black --check --diff .
+ flake8 src/paste tests
check-manifest
# build sdist/wheel
python -m build .
twine check dist/*
deps =
+ black
build
check-manifest
+ flake8
+ flake8-bugbear
+ isort
readme_renderer
twine
+[testenv:format]
+skip_install = true
+commands =
+ isort src/paste tests
+ black .
+deps =
+ black
+ isort
+
[testenv:build]
skip_install = True
commands =