Added test skip under Windows, as not applicable there.

This commit is contained in:
Vinay Sajip 2012-05-31 12:37:04 +01:00
parent cf4a1b7ecf
commit d70be9ba1f

View file

@ -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.