summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2018-11-03 15:26:05 -0700
committerDavid Lord <davidism@gmail.com>2018-11-03 15:31:24 -0700
commitb41c96e00afd09eca075a98589886c78666d4d33 (patch)
treebf372cf97c44210717b8954919436023f275627b /tox.ini
parent6247e015ebe0006ee16e69da7aaaba20de18ec94 (diff)
downloadmarkupsafe-b41c96e00afd09eca075a98589886c78666d4d33.tar.gz
add style checks
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 6 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index b5021d7..aaa666e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,7 @@
[tox]
envlist =
py{37,36,35,34,27,py3,py}
+ stylecheck
docs-html
coverage-report
skip_missing_interpreters = true
@@ -12,6 +13,11 @@ deps =
pytest-cov
commands = pytest --tb=short --cov --cov-report= {posargs}
+[testenv:stylecheck]
+deps = pre-commit
+skip_install = true
+commands = pre-commit run --all-files --show-diff-on-failure
+
[testenv:docs-html]
deps = -r docs/requirements.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html