diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-01-25 15:14:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 15:14:03 -0500 |
commit | 3c3ba31507cbff27064ea3c6cf1e7add9583556a (patch) | |
tree | e75605d1d022d4eb60c7328eacf027e20ae151a7 /mypy.ini | |
parent | Document how to handle Dependabot pull requests. (#14916) (diff) | |
download | synapse-3c3ba31507cbff27064ea3c6cf1e7add9583556a.tar.xz |
Add missing type hints for tests.events. (#14904)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mypy.ini b/mypy.ini index 248402532e..13890ce124 100644 --- a/mypy.ini +++ b/mypy.ini @@ -35,8 +35,6 @@ exclude = (?x) |tests/api/test_auth.py |tests/app/test_openid_listener.py |tests/appservice/test_scheduler.py - |tests/events/test_presence_router.py - |tests/events/test_utils.py |tests/federation/test_federation_catch_up.py |tests/federation/test_federation_sender.py |tests/handlers/test_typing.py @@ -86,6 +84,9 @@ disallow_untyped_defs = True [mypy-tests.crypto.*] disallow_untyped_defs = True +[mypy-tests.events.*] +disallow_untyped_defs = True + [mypy-tests.federation.transport.test_client] disallow_untyped_defs = True |