diff options
author | Erik Johnston <erik@matrix.org> | 2019-12-12 17:21:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-12 17:21:42 +0000 |
commit | 7e67cfc87d23224459c7483b291d5708353aa4e5 (patch) | |
tree | 1593e277fad74c115ba74ebf66e04aaedb7e3e06 | |
parent | look up cross-signing keys from the DB in bulk (#6486) (diff) | |
parent | Newsfile (diff) | |
download | synapse-7e67cfc87d23224459c7483b291d5708353aa4e5.tar.xz |
Merge pull request #6534 from matrix-org/erikj/extend_mypy
Include more folders in mypy
-rw-r--r-- | changelog.d/6534.misc | 1 | ||||
-rw-r--r-- | tox.ini | 14 |
2 files changed, 14 insertions, 1 deletions
diff --git a/changelog.d/6534.misc b/changelog.d/6534.misc new file mode 100644 index 0000000000..7df6bb442a --- /dev/null +++ b/changelog.d/6534.misc @@ -0,0 +1 @@ +Test more folders against mypy. diff --git a/tox.ini b/tox.ini index 903a245fb0..2ae82d674f 100644 --- a/tox.ini +++ b/tox.ini @@ -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 |