]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-133551: Skip annotationlib for now in ast roundtrip tests (#133634)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Thu, 8 May 2025 02:35:44 +0000 (19:35 -0700)
committerGitHub <noreply@github.com>
Thu, 8 May 2025 02:35:44 +0000 (19:35 -0700)
Lib/test/test_unparse.py

index d3af7a8489e650e12d1875dd1371b3ae659ce5da..5616129eb63c2febf4e548efc532600a7272deb1 100644 (file)
@@ -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.