From 7c5c2392947049a62ca22ed08e73ff0113635d09 Mon Sep 17 00:00:00 2001 From: Z Liu Date: Mon, 6 Jul 2026 18:13:51 +0000 Subject: [PATCH] Skip test failing on python 3.14 and above due to known behaviour change --- test/test_cuda.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_cuda.py b/test/test_cuda.py index cc209e5f03b28..15ecae02e5e11 100644 --- a/test/test_cuda.py +++ b/test/test_cuda.py @@ -4147,6 +4147,7 @@ def test_gds_fails_in_ci(self): @unittest.skipIf( IS_WINDOWS, "test relies on fork; Windows multiprocessing uses spawn" ) + @unittest.skipIf(sys.version_info >= (3, 14), "test fails on Python 3.14+") def test_is_pinned_no_context(self): test_script = """\ import torch