From: Jelle Zijlstra Date: Thu, 8 May 2025 02:35:44 +0000 (-0700) Subject: gh-133551: Skip annotationlib for now in ast roundtrip tests (#133634) X-Git-Tag: v3.15.0a1~1845 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a3ccb8dff2bd140f800d9e0b00549d8f1ead929;p=thirdparty%2FPython%2Fcpython.git gh-133551: Skip annotationlib for now in ast roundtrip tests (#133634) --- 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.