diff options
author | David Robertson <davidr@element.io> | 2022-06-09 09:48:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 09:48:04 +0100 |
commit | 97053c94060ea31d3b9d41a129221ad4b2a76865 (patch) | |
tree | d1f40ebd953b13b7804914c7d7175a644e2c008b /mypy.ini | |
parent | Use READ COMMITTED isolation level when inserting read receipts (#12957) (diff) | |
download | synapse-97053c94060ea31d3b9d41a129221ad4b2a76865.tar.xz |
Type annotations for `test_v2` (#12985)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mypy.ini b/mypy.ini index fe3e3f9b8e..7973f2ac01 100644 --- a/mypy.ini +++ b/mypy.ini @@ -56,7 +56,6 @@ exclude = (?x) |tests/rest/media/v1/test_media_storage.py |tests/server.py |tests/server_notices/test_resource_limits_server_notices.py - |tests/state/test_v2.py |tests/test_metrics.py |tests/test_server.py |tests/test_state.py @@ -115,6 +114,9 @@ disallow_untyped_defs = False [mypy-tests.handlers.test_user_directory] disallow_untyped_defs = True +[mypy-tests.state.test_profile] +disallow_untyped_defs = True + [mypy-tests.storage.test_profile] disallow_untyped_defs = True |