From fca15e704366fac603412ae87a414b4e1b0a2206 Mon Sep 17 00:00:00 2001 From: Bharadwaj Pendyala Date: Fri, 14 Aug 2026 09:52:25 -0500 Subject: [PATCH] chore(tests): ignore _normalize_tuple_items in the recursion detector --- 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 e9f87ba6cae..6b115403ceb 100644 --- a/tests/code_coverage_tests/recursive_detector.py +++ b/tests/code_coverage_tests/recursive_detector.py @@ -11,6 +11,7 @@ IGNORE_FUNCTIONS = [ "clean_message", "unpack_defs", "convert_anyof_null_to_nullable", # has a set max depth + "_normalize_tuple_items", # has a set max depth "add_object_type", "strip_field", "_transform_prompt",