From 5e86eed33e572cc37c19e6b330e960b8b859443c Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Tue, 29 May 2012 22:48:10 +0100 Subject: [PATCH] Reapplied skip logic for test on Windows, which appears to have been lost during a merge. --- Lib/test/test_logging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 26baf11b69..075b839b95 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -582,6 +582,7 @@ class HandlerTest(BaseTest): self.assertFalse(h.shouldFlush(r)) h.close() + @unittest.skipIf(os.name == 'nt', 'WatchedFileHandler not appropriate for Windows.') @unittest.skipUnless(threading, 'Threading required for this test.') def test_race(self): # Issue #14632 refers. -- 2.40.0