Skip to content
Merged
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
Removed comments about which tests are run in which environment
  • Loading branch information
terryluan12 authored and youknowone committed Jan 15, 2026
commit 55665b72c9f7d04cb3ec9d1311d64aa50127a3fa
2 changes: 1 addition & 1 deletion Lib/test/test_descr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,7 @@ def __init__(self, foo):
object.__init__(A(3))
self.assertRaises(TypeError, object.__init__, A(3), 5)

# TODO: RUSTPYTHON; The `expectedFailure` here is from CPython, so this test actually fails. Not run on linux?
# TODO: RUSTPYTHON; The `expectedFailure` here is from CPython, so this test actually fails
Comment thread
terryluan12 marked this conversation as resolved.
Outdated
# @unittest.expectedFailure
def test_restored_object_new(self):
class A(object):
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def bad_key(x):

class TestBugs(unittest.TestCase):

@unittest.skip("TODO: RUSTPYTHON; figure out how to detect sort mutation that doesn't change list length; Only run on linux?")
@unittest.skip("TODO: RUSTPYTHON; figure out how to detect sort mutation that doesn't change list length")
def test_bug453523(self):
# bug 453523 -- list.sort() crasher.
# If this fails, the most likely outcome is a core dump.
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_sqlite3/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def test_recursive_cursor_init(self):
self.assertRaisesRegex(sqlite.ProgrammingError, self.msg,
self.cur.fetchall)

@unittest.skip("TODO: RUSTPYTHON; Hangs; Not run on linux?")
@unittest.skip("TODO: RUSTPYTHON; Hangs")
def test_recursive_cursor_close(self):
conv = lambda x: self.cur.close()
with patch.dict(sqlite.converters, {"CLOSE": conv}):
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -4596,7 +4596,7 @@ def server_callback(identity):
with client_context.wrap_socket(socket.socket()) as s:
s.connect((HOST, server.port))

@unittest.expectedFailure #TODO: RUSTPYTHON; Not run on linux?"
@unittest.expectedFailure #TODO: RUSTPYTHON
def test_thread_recv_while_main_thread_sends(self):
# GH-137583: Locking was added to calls to send() and recv() on SSL
# socket objects. This seemed fine at the surface level because those
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -2318,7 +2318,7 @@ def _test_extra_groups_impl(self, *, gid, group_list):
extra_groups=[name_group])

# No skip necessary, this test won't make it to a setgroup() call.
@unittest.skip('TODO: RUSTPYTHON; Not run on linux?')
@unittest.skip('TODO: RUSTPYTHON')
Comment thread
terryluan12 marked this conversation as resolved.
Outdated
def test_extra_groups_invalid_gid_t_values(self):
with self.assertRaises(ValueError):
subprocess.check_call(ZERO_RETURN_CMD, extra_groups=[-1])
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_tempfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1735,7 +1735,7 @@ def test_cleanup_with_symlink_to_a_directory(self):
d2.cleanup()

@os_helper.skip_unless_symlink
@unittest.expectedFailureIf(sys.platform != "darwin", "TODO: RUSTPYTHON; Not run in linux? Passes on Mac")
@unittest.expectedFailureIf(sys.platform != "darwin", "TODO: RUSTPYTHON")
def test_cleanup_with_symlink_modes(self):
# cleanup() should not follow symlinks when fixing mode bits (#91133)
with self.do_create(recurse=0) as d2:
Expand Down