From d974927b6442ea056d2736837907e4021024bf4f Mon Sep 17 00:00:00 2001 From: Herrtian <70463940+Herrtian@users.noreply.github.com> Date: Tue, 16 Jun 2026 14:52:30 +0200 Subject: [PATCH] test: exclude unused head helper endpoint --- tests/test_auto_head_for_get.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_auto_head_for_get.py b/tests/test_auto_head_for_get.py index 714616949b..f859c58c48 100644 --- a/tests/test_auto_head_for_get.py +++ b/tests/test_auto_head_for_get.py @@ -140,7 +140,7 @@ def test_head_not_added_to_non_get_routes(): def test_head_not_added_when_route_has_no_methods(): - def read_items(): + def read_items(): # pragma: no cover return [] route = APIRoute("/items", read_items)