From add3183308f653ccc50246f24fe3eb4d82d08b6b Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 14 Feb 2026 12:59:15 -0800 Subject: [PATCH] IGNORE_FUNCTIONS --- tests/code_coverage_tests/recursive_detector.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/code_coverage_tests/recursive_detector.py b/tests/code_coverage_tests/recursive_detector.py index d6bf1941a0..3710971229 100644 --- a/tests/code_coverage_tests/recursive_detector.py +++ b/tests/code_coverage_tests/recursive_detector.py @@ -43,6 +43,7 @@ IGNORE_FUNCTIONS = [ "_basic_json_schema_validate", # max depth set. "extract_text_from_a2a_message", # max depth set (default 10) to prevent infinite recursion in A2A message parsing. "_convert_to_json_serializable_dict", # max depth set (default 20) and circular reference protection to prevent infinite recursion. + "dict", # max depth set. _LiteLLMParamsDictView.dict() calls builtin dict(), not itself. ]