diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_process.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index a5303338..000330ad 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -1296,6 +1296,11 @@ class UnicodeFilePathsTest(CoverageTest): class YankedDirectoryTest(CoverageTest): """Tests of what happens when the current directory is deleted.""" + def setUp(self): + if env.WINDOWS: + self.skipTest("Windows can't delete the directory in use.") + super(YankedDirectoryTest, self).setUp() + BUG_806 = """\ import os import sys |