summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-05-29 21:48:10 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-05-29 21:48:10 (GMT)
commit5e86eed33e572cc37c19e6b330e960b8b859443c (patch)
tree24722b6092012e0108850f97b8ee1c5546625636
parentc1f0b538754c1b58194577de33c07caed4b39349 (diff)
downloadcpython-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.py1
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.