Add mypy checks to makefile command

This commit is contained in:
Roman Mogylatov 2020-08-24 21:54:46 -04:00
parent 34a32d44da
commit 3f05141f1a

View File

@ -60,13 +60,14 @@ test-py3: build
coverage html --rcfile=./.coveragerc
check:
# Static analysis
flake8 src/dependency_injector/
flake8 examples/
# Code style analysis
pydocstyle src/dependency_injector/
pydocstyle examples/
mypy tests/typing
test-publish: cythonize
# Create distributions
python setup.py sdist