diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-29 22:48:10 +0100 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-29 22:48:10 +0100 |
commit | 5e86eed33e572cc37c19e6b330e960b8b859443c (patch) | |
tree | 24722b6092012e0108850f97b8ee1c5546625636 /Lib/test/test_logging.py | |
parent | c1f0b538754c1b58194577de33c07caed4b39349 (diff) | |
download | cpython-git-5e86eed33e572cc37c19e6b330e960b8b859443c.tar.gz |
Reapplied skip logic for test on Windows, which appears to have been lost during a merge.
Diffstat (limited to 'Lib/test/test_logging.py')
-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 26baf11b69..075b839b95 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. |