]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-135721: skip `test_trashcan_python_class` on wasm buildbots with stack...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 25 Jun 2025 23:02:39 +0000 (01:02 +0200)
committerGitHub <noreply@github.com>
Wed, 25 Jun 2025 23:02:39 +0000 (23:02 +0000)
gh-135721: skip `test_trashcan_python_class` on wasm buildbots with stack overflow (GH-135766)
(cherry picked from commit 3fb6cfe7a95081e6775ad2dca845713a3ea4c799)

Co-authored-by: Pastukhov Nikita <diementros@yandex.ru>
Lib/test/test_capi/test_misc.py

index f74694a7a745a46e404fe170364f3edc88338c74..ef950f5df04ad3b146f1d3c9b81825b4733ebdf4 100644 (file)
@@ -413,11 +413,13 @@ class CAPITest(unittest.TestCase):
 
     @support.requires_resource('cpu')
     @support.skip_emscripten_stack_overflow()
+    @support.skip_wasi_stack_overflow()
     def test_trashcan_python_class1(self):
         self.do_test_trashcan_python_class(list)
 
     @support.requires_resource('cpu')
     @support.skip_emscripten_stack_overflow()
+    @support.skip_wasi_stack_overflow()
     def test_trashcan_python_class2(self):
         from _testcapi import MyList
         self.do_test_trashcan_python_class(MyList)