From e9ed39bd2377ab2b3ba6151edbd7b39c24c1a2b6 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 7 May 2025 19:06:21 -0700 Subject: [PATCH] gh-133551: Skip annotationlib for now in ast roundtrip tests --- 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.