https://github.com/python/cpython/commit/c8e914cfb5520ebe3c91c375bd0a5aad731f45d7 commit: c8e914cfb5520ebe3c91c375bd0a5aad731f45d7 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: brettcannon <[email protected]> date: 2025-06-25T23:02:39Z summary:
[3.14] gh-135721: skip `test_trashcan_python_class` on wasm buildbots with stack overflow (GH-135766) (GH-135955) 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 <[email protected]> files: M Lib/test/test_capi/test_misc.py diff --git a/Lib/test/test_capi/test_misc.py b/Lib/test/test_capi/test_misc.py index f74694a7a745a4..ef950f5df04ad3 100644 --- a/Lib/test/test_capi/test_misc.py +++ b/Lib/test/test_capi/test_misc.py @@ -413,11 +413,13 @@ def test_trashcan_subclass(self): @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) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
