https://github.com/python/cpython/commit/3fb6cfe7a95081e6775ad2dca845713a3ea4c799 commit: 3fb6cfe7a95081e6775ad2dca845713a3ea4c799 branch: main author: Pastukhov Nikita <diement...@yandex.ru> committer: sobolevn <m...@sobolevn.me> date: 2025-06-20T20:06:01+03:00 summary:
gh-135721: skip `test_trashcan_python_class` on wasm buildbots with stack overflow (#135766) 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 -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: arch...@mail-archive.com