From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 8 May 2025 03:01:33 +0000 (+0200) Subject: [3.14] gh-133551: Skip annotationlib for now in ast roundtrip tests (GH-133634) ... X-Git-Tag: v3.14.0b2~239 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f12e576128b2d8b201a9a59fa75296085212a4df;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-133551: Skip annotationlib for now in ast roundtrip tests (GH-133634) (#133636) gh-133551: Skip annotationlib for now in ast roundtrip tests (GH-133634) (cherry picked from commit 0a3ccb8dff2bd140f800d9e0b00549d8f1ead929) Co-authored-by: Jelle Zijlstra --- 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.