From 675d9009a289962de0d1b4d2b7493310e69dd28e Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 7 May 2025 19:35:44 -0700 Subject: [PATCH] gh-133551: Skip annotationlib for now in ast roundtrip tests (GH-133634) (cherry picked from commit 0a3ccb8dff2bd140f800d9e0b00549d8f1ead929) Co-authored-by: Jelle Zijlstra --- Lib/test/test_unparse.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_unparse.py b/Lib/test/test_unparse.py index d3af7a8489e650..5616129eb63c2f 100644 --- a/Lib/test/test_unparse.py +++ b/Lib/test/test_unparse.py @@ -942,6 +942,7 @@ def files_to_test(cls): for directory in cls.test_directories for item in directory.glob("*.py") if not item.name.startswith("bad") + and item.name != "annotationlib.py" # gh-133581: t"" does not roundtrip ] # Test limited subset of files unless the 'cpu' resource is specified.