diff --git a/tox.ini b/tox.ini index dfadf03..672004f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,15 @@ [tox] -envlist = py{26,27,py,33,34,35}-{test,stylecheck} +envlist = py{26,27,py,33,34,35}-{test,stylecheck},py{33,34,35}-typecheck [testenv] deps = test: pytest stylecheck: flake8 stylecheck: flake8-import-order + typecheck: mypy-lang + typecheck: typed-ast + typecheck: typing commands = test: py.test [] stylecheck: flake8 [] + typecheck: mypy atomicwrites