Skip to content
Closed
Show file tree
Hide file tree
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 hanging tests
Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
  • Loading branch information
arihant2math committed Feb 17, 2025
commit 9ad3cd14a55a1f17d8f54f671610da137bc523a4
2 changes: 1 addition & 1 deletion Lib/test/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ def test_obsolete_write_lock(self):
self.assertRaises(BufferError, _testcapi.getbuffer_with_null_view, a)

# TODO: RUSTPYTHON
@unittest.expectedFailure
@unittest.skip("TODO: RustPython hang")
def test_free_after_iterating(self):
support.check_free_after_iterating(self, iter, array.array,
(self.typecode,))
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_bytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ def test_find_etc_raise_correct_error_messages(self):
x, None, None, None)

# TODO: RUSTPYTHON
@unittest.expectedFailure
@unittest.skip("TODO: RustPython hang")
def test_free_after_iterating(self):
test.support.check_free_after_iterating(self, iter, self.type2test)
test.support.check_free_after_iterating(self, reversed, self.type2test)
Expand Down