From: Vinay Sajip Date: Tue, 29 May 2012 21:48:10 +0000 (+0100) Subject: Reapplied skip logic for test on Windows, which appears to have been lost during... X-Git-Tag: v3.3.0a4~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e86eed33e572cc37c19e6b330e960b8b859443c;p=python Reapplied skip logic for test on Windows, which appears to have been lost during a merge. --- 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.