summary refs log tree commit diff
path: root/tox.ini
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-02-21 11:38:13 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-02-21 11:38:13 +0000
commit35a521bd6f4841162ca98706812be1eedbba85bd (patch)
treef577fcbd75aafc90d91d1b8ba803a3ef0023b9b4 /tox.ini
parentFix a cache-invalidation bug for worker-based deployments (#5920) (diff)
parentImplement a structured logging output system. (#5680) (diff)
downloadsynapse-35a521bd6f4841162ca98706812be1eedbba85bd.tar.xz
Implement a structured logging output system. (#5680)
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini10
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