From d70be9ba1f1ddb332f039491a50ac9190d3adfc4 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Thu, 31 May 2012 12:37:04 +0100 Subject: Added test skip under Windows, as not applicable there. --- 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 16b3fb6..2d264f8 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -2331,6 +2331,7 @@ for when, exp in (('S', 1), class HandlerTest(BaseTest): + @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. -- cgit v0.12