From 70bd7a592ed4a997366db45fe9c3b454bf3fc8ff Mon Sep 17 00:00:00 2001 From: lif <1835304752@qq.com> Date: Sun, 21 Dec 2025 17:48:32 +0800 Subject: [PATCH] Exclude manual test runner from coverage --- tests/test_annotated_forward_ref.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_annotated_forward_ref.py b/tests/test_annotated_forward_ref.py index b82547197a..0a6a99ac08 100644 --- a/tests/test_annotated_forward_ref.py +++ b/tests/test_annotated_forward_ref.py @@ -53,7 +53,7 @@ def test_openapi_schema(): ) -if __name__ == "__main__": +if __name__ == "__main__": # pragma: no cover test_annotated_forward_ref() test_openapi_schema() print("All tests passed!")