Skip to content

Commit 6f7d1b4

Browse files
committed
unskip tests
1 parent d347ba7 commit 6f7d1b4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Lib/test/test_compile.py

-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ def __getitem__(self, key):
108108
exec('z = a', g, d)
109109
self.assertEqual(d['z'], 12)
110110

111-
@unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
112111
def test_extended_arg(self):
113112
# default: 1000 * 2.5 = 2500 repetitions
114113
repeat = int(sys.getrecursionlimit() * 2.5)
@@ -543,7 +542,6 @@ def test_yet_more_evil_still_undecodable(self):
543542
self.assertIn(b"Non-UTF-8", res.err)
544543

545544
@support.cpython_only
546-
@unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
547545
def test_compiler_recursion_limit(self):
548546
# Expected limit is sys.getrecursionlimit() * the scaling factor
549547
# in symtable.c (currently 3)

0 commit comments

Comments
 (0)