Include more folders in mypy

pull/6534/head
Erik Johnston 2019-12-12 14:52:11 +00:00
parent 25f1244329
commit 324d4f61b8
1 changed files with 13 additions and 1 deletions

14
tox.ini
View File

@ -177,5 +177,17 @@ env =
MYPYPATH = stubs/
extras = all
commands = mypy \
synapse/config/ \
synapse/handlers/ui_auth \
synapse/logging/ \
synapse/config/
synapse/module_api \
synapse/rest/consent \
synapse/rest/media/v0 \
synapse/rest/saml2 \
synapse/spam_checker_api \
synapse/storage/engines \
synapse/streams
# To find all folders that pass mypy you run:
#
# find synapse/* -type d -not -name __pycache__ -exec bash -c "mypy '{}' > /dev/null" \; -print