diff options
author | David Robertson <davidr@element.io> | 2022-10-31 13:02:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-31 13:02:07 +0000 |
commit | 2bb2c32e8ed5642a5bf3ba1e8c49e10cecc88905 (patch) | |
tree | b25c0eb8017de0c12dc176dbae2679d9177c0cbf /mypy.ini | |
parent | Prevent federation user keys query from returning device names if disallowed ... (diff) | |
download | synapse-2bb2c32e8ed5642a5bf3ba1e8c49e10cecc88905.tar.xz |
Avoid incrementing bg process utime/stime counters by negative durations (#14323)
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 34b4523e00..8f1141a239 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/test_metrics.py |tests/test_state.py |tests/test_terms_auth.py |tests/util/caches/test_cached_call.py @@ -106,6 +105,9 @@ disallow_untyped_defs = False [mypy-tests.handlers.test_user_directory] disallow_untyped_defs = True +[mypy-tests.metrics.test_background_process_metrics] +disallow_untyped_defs = True + [mypy-tests.push.test_bulk_push_rule_evaluator] disallow_untyped_defs = True |