summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-01-29 18:27:37 -0800
committerDavid Lord <davidism@gmail.com>2021-01-29 18:40:05 -0800
commit6a64222bfb18bd49e3a12f509f38ee7f2585799f (patch)
tree8c36679e1883ee23bcbecd6ccd0ae5d92e8f995e /tox.ini
parent9724cdedc887632d64d8fc7ed40056d0a8431f06 (diff)
downloadmarkupsafe-6a64222bfb18bd49e3a12f509f38ee7f2585799f.tar.gz
add type annotations
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 5 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 9ec517b..689c68b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,6 +2,7 @@
envlist =
py{39,38,37,36,py3}
style
+ typing
docs
skip_missing_interpreters = true
@@ -14,6 +15,10 @@ deps = pre-commit
skip_install = true
commands = pre-commit run --all-files --show-diff-on-failure
+[testenv:typing]
+deps = -r requirements/typing.txt
+commands = mypy
+
[testenv:docs]
deps = -r requirements/docs.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html