diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-21 11:38:13 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-21 11:38:13 +0000 |
commit | 35a521bd6f4841162ca98706812be1eedbba85bd (patch) | |
tree | f577fcbd75aafc90d91d1b8ba803a3ef0023b9b4 /tox.ini | |
parent | Fix a cache-invalidation bug for worker-based deployments (#5920) (diff) | |
parent | Implement a structured logging output system. (#5680) (diff) | |
download | synapse-35a521bd6f4841162ca98706812be1eedbba85bd.tar.xz |
Implement a structured logging output system. (#5680)
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini index 689cb43db1..da5cb057b7 100644 --- a/tox.ini +++ b/tox.ini @@ -146,3 +146,13 @@ commands = coverage combine coverage xml codecov -X gcov + +[testenv:mypy] +basepython = python3.5 +deps = + {[base]deps} + mypy +extras = all +commands = mypy --ignore-missing-imports \ + synapse/logging/_structured.py \ + synapse/logging/_terse_json.py \ No newline at end of file |