From 38a9ec8ae0f79421aa8cc09cc293abcce386d002 Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Sat, 10 Jan 2026 21:45:19 +0800 Subject: [PATCH] =?UTF-8?q?:construction=5Fworker:=20CI:=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=20`test=5Fdepend`=20cpython=20=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E8=8C=83=E5=9B=B4=20(#3828)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- tests/test_param.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_param.py b/tests/test_param.py index c2dd9aa6..87944dfb 100644 --- a/tests/test_param.py +++ b/tests/test_param.py @@ -43,7 +43,8 @@ UNKNOWN_PARAM = "Unknown parameter" @pytest.mark.anyio @pytest.mark.xfail( - ((3, 13) <= sys.version_info < (3, 13, 8)) or (3, 14) <= sys.version_info, + ((3, 13) <= sys.version_info < (3, 13, 8)) + or ((3, 14) <= sys.version_info < (3, 14, 1)), reason="CPython Bug, see python/cpython#137317, python/cpython#137862", ) async def test_depend(app: App):