commit | d70be9ba1f1ddb332f039491a50ac9190d3adfc4 | [log] [tgz] |
---|---|---|
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 31 12:37:04 2012 +0100 |
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 31 12:37:04 2012 +0100 |
tree | fd106f583dcde45f07a9ace76ba86d76eef18b04 | |
parent | cf4a1b7ecf986d7414235687f5cdf2735e23965f [diff] |
Added test skip under Windows, as not applicable there.
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 @@ 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.