diff options
-rw-r--r-- | Lib/test/test_logging.py | 1 |
1 files changed, 1 insertions, 0 deletions
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. |