diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-11-22 17:35:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 17:35:54 -0500 |
commit | 4ae967cf6308e80b03da749f0cbaed36988e235e (patch) | |
tree | ada8f0dbd704f74c54feca002bb8a62c65021d26 /mypy.ini | |
parent | Optimize `filter_events_for_client` for faster `/messages` - v2 (#14527) (diff) | |
download | synapse-4ae967cf6308e80b03da749f0cbaed36988e235e.tar.xz |
Add missing type hints to test.util.caches (#14529)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mypy.ini b/mypy.ini index 4cd61e0484..25b3c93748 100644 --- a/mypy.ini +++ b/mypy.ini @@ -59,11 +59,6 @@ exclude = (?x) |tests/server_notices/test_resource_limits_server_notices.py |tests/test_state.py |tests/test_terms_auth.py - |tests/util/caches/test_cached_call.py - |tests/util/caches/test_deferred_cache.py - |tests/util/caches/test_descriptors.py - |tests/util/caches/test_response_cache.py - |tests/util/caches/test_ttlcache.py |tests/util/test_async_helpers.py |tests/util/test_batching_queue.py |tests/util/test_dict_cache.py @@ -133,6 +128,12 @@ disallow_untyped_defs = True [mypy-tests.federation.transport.test_client] disallow_untyped_defs = True +[mypy-tests.util.caches.*] +disallow_untyped_defs = True + +[mypy-tests.util.caches.test_descriptors] +disallow_untyped_defs = False + [mypy-tests.utils] disallow_untyped_defs = True |