diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-29 21:48:10 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-29 21:48:10 (GMT) |
commit | 5e86eed33e572cc37c19e6b330e960b8b859443c (patch) | |
tree | 24722b6092012e0108850f97b8ee1c5546625636 | |
parent | c1f0b538754c1b58194577de33c07caed4b39349 (diff) | |
download | cpython-5e86eed33e572cc37c19e6b330e960b8b859443c.zip cpython-5e86eed33e572cc37c19e6b330e960b8b859443c.tar.gz cpython-5e86eed33e572cc37c19e6b330e960b8b859443c.tar.bz2 |
Reapplied skip logic for test on Windows, which appears to have been lost during a merge.
-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 26baf11..075b839 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. |