1 files changed, 2 insertions, 7 deletions
diff --git a/mypy.ini b/mypy.ini
index 37acf589c9..80fbcdfeab 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -36,8 +36,6 @@ exclude = (?x)
|tests/api/test_ratelimiting.py
|tests/app/test_openid_listener.py
|tests/appservice/test_scheduler.py
- |tests/config/test_cache.py
- |tests/config/test_tls.py
|tests/crypto/test_keyring.py
|tests/events/test_presence_router.py
|tests/events/test_utils.py
@@ -89,16 +87,13 @@ disallow_untyped_defs = False
[mypy-tests.*]
disallow_untyped_defs = False
-[mypy-tests.config.test_api]
+[mypy-tests.config.*]
disallow_untyped_defs = True
[mypy-tests.federation.transport.test_client]
disallow_untyped_defs = True
-[mypy-tests.handlers.test_sso]
-disallow_untyped_defs = True
-
-[mypy-tests.handlers.test_user_directory]
+[mypy-tests.handlers.*]
disallow_untyped_defs = True
[mypy-tests.metrics.test_background_process_metrics]
|