From 693f641b58b6fb5882a8dbc5402922a6144e8020 Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Sun, 17 May 2026 13:50:23 +0300 Subject: [PATCH] Don't skip passing ast tests --- Lib/test/test_ast/test_ast.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/test/test_ast/test_ast.py b/Lib/test/test_ast/test_ast.py index 0578b755d65..a211b01172a 100644 --- a/Lib/test/test_ast/test_ast.py +++ b/Lib/test/test_ast/test_ast.py @@ -1984,7 +1984,6 @@ def test_level_as_none(self): exec(code, ns) self.assertIn('sleep', ns) - @unittest.skip("TODO: RUSTPYTHON; crash") @skip_if_unlimited_stack_size @skip_emscripten_stack_overflow() def test_recursion_direct(self): @@ -1994,7 +1993,6 @@ def test_recursion_direct(self): with support.infinite_recursion(): compile(ast.Expression(e), "", "eval") - @unittest.skip("TODO: RUSTPYTHON; crash") @skip_if_unlimited_stack_size @skip_emscripten_stack_overflow() def test_recursion_indirect(self): @@ -2357,7 +2355,6 @@ def test_yield(self): self.expr(ast.Yield(ast.Name("x", ast.Store())), "must have Load") self.expr(ast.YieldFrom(ast.Name("x", ast.Store())), "must have Load") - @unittest.skip("TODO: RUSTPYTHON; thread 'main' panicked") def test_compare(self): left = ast.Name("x", ast.Load()) comp = ast.Compare(left, [ast.In()], [])