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
Mark some failing windows tests
  • Loading branch information
ShaharNaveh committed Jul 19, 2025
commit 9d7765eccf003eca7acd5bacafcf83a84479e0ba
4 changes: 4 additions & 0 deletions Lib/test/test_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -6531,6 +6531,8 @@ def test_rollover(self):
print(tf.read())
self.assertTrue(found, msg=msg)

# TODO: RUSTPYTHON
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
def test_rollover_at_midnight(self, weekly=False):
os_helper.unlink(self.fn)
now = datetime.datetime.now()
Expand Down Expand Up @@ -6574,6 +6576,8 @@ def test_rollover_at_midnight(self, weekly=False):
for i, line in enumerate(f):
self.assertIn(f'testing1 {i}', line)

# TODO: RUSTPYTHON
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
def test_rollover_at_weekday(self):
self.test_rollover_at_midnight(weekly=True)

Expand Down