diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-31 11:37:04 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-31 11:37:04 (GMT) |
commit | d70be9ba1f1ddb332f039491a50ac9190d3adfc4 (patch) | |
tree | fd106f583dcde45f07a9ace76ba86d76eef18b04 | |
parent | cf4a1b7ecf986d7414235687f5cdf2735e23965f (diff) | |
download | cpython-d70be9ba1f1ddb332f039491a50ac9190d3adfc4.zip cpython-d70be9ba1f1ddb332f039491a50ac9190d3adfc4.tar.gz cpython-d70be9ba1f1ddb332f039491a50ac9190d3adfc4.tar.bz2 |
Added test skip under Windows, as not applicable there.
-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. |