Add a type checking pipeline (#1682)

* Integrate with mypy
This commit is contained in:
Vinícius Dantas
2019-09-22 17:55:36 -03:00
committed by 7
parent 927c0e082e
commit 6fc3381229
16 changed files with 115 additions and 53 deletions

View File

@@ -38,6 +38,13 @@ commands =
black --config ./.black.toml --check --verbose sanic/
isort --check-only --recursive sanic
[testenv:type-checking]
deps =
mypy
commands =
mypy sanic
[testenv:check]
deps =
docutils