gh-104016: Skip test for deeply neste f-strings on wasi (#104071)

This commit is contained in:
Pablo Galindo Salgado 2023-05-02 01:55:41 +02:00 committed by GitHub
parent 605f8785db
commit b1ca34d4d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -561,6 +561,7 @@ x = (
])
self.assertRaises(SyntaxError, eval, "f'{" + "("*500 + "}'")
@unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
def test_fstring_nested_too_deeply(self):
self.assertAllRaise(SyntaxError,
"f-string: expressions nested too deeply",