]> granicus.if.org Git - python/commitdiff
Reapplied skip logic for test on Windows, which appears to have been lost during...
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Tue, 29 May 2012 21:48:10 +0000 (22:48 +0100)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Tue, 29 May 2012 21:48:10 +0000 (22:48 +0100)
Lib/test/test_logging.py

index 26baf11b69d40f38367a2d69c0bbaf5a1fd5445c..075b839b9502d68189cfcbecc4add5f2c48656ba 100644 (file)
@@ -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.