Add mypy checks to CI

This commit is contained in:
Roman Mogylatov 2020-08-24 21:01:11 -04:00
parent ebd00b74e1
commit 34a32d44da
2 changed files with 10 additions and 0 deletions

View File

@ -22,6 +22,10 @@ jobs:
env: TOXENV=pydocstyle
install: pip install tox
script: tox
- python: 3.6
env: TOXENV=mypy
install: pip install tox
script: tox
- python: 2.7
env: TOXENV=py27
install: pip install tox

View File

@ -66,3 +66,9 @@ deps=
commands=
pydocstyle src/dependency_injector/
pydocstyle examples/
[testenv:mypy]
deps=
mypy
commands=
mypy tests/typing