Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
skip crashing test
  • Loading branch information
ShaharNaveh committed Jul 25, 2025
commit a5b240aab806931a5658133312bbb0f76adc5add
5 changes: 4 additions & 1 deletion Lib/test/test_json/test_recursion.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from test import support
from test.test_json import PyTest, CTest

import unittest # XXX: RUSTPYTHON; importing to be able to skip tests


class JSONTestObject:
pass
Expand Down Expand Up @@ -65,7 +67,8 @@ def default(self, o):
else:
self.fail("didn't raise ValueError on default recursion")


# TODO: RUSTPYTHON
@unittest.skip("TODO: RUSTPYTHON; crashes")
def test_highly_nested_objects_decoding(self):
# test that loading highly-nested objects doesn't segfault when C
# accelerations are used. See #12017
Expand Down