From 55bbabb0d5c0b0b44db44cb4e579911762c442eb Mon Sep 17 00:00:00 2001 From: StarHeartHunt Date: Wed, 8 Oct 2025 17:26:30 +0800 Subject: [PATCH] :white_check_mark: strictly limit xfail range --- tests/test_param.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_param.py b/tests/test_param.py index 9276865f..c2dd9aa6 100644 --- a/tests/test_param.py +++ b/tests/test_param.py @@ -42,6 +42,10 @@ UNKNOWN_PARAM = "Unknown parameter" @pytest.mark.anyio +@pytest.mark.xfail( + ((3, 13) <= sys.version_info < (3, 13, 8)) or (3, 14) <= sys.version_info, + reason="CPython Bug, see python/cpython#137317, python/cpython#137862", +) async def test_depend(app: App): from plugins.param.param_depend import ( ClassDependency,