From 0a3ccb8dff2bd140f800d9e0b00549d8f1ead929 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 (#133634) --- 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 d3af7a8489e6..5616129eb63c 100644 --- a/Lib/test/test_unparse.py +++ b/Lib/test/test_unparse.py @@ -942,6 +942,7 @@ class DirectoryTestCase(ASTTestCase): 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. -- 2.47.3