diff options
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index b7c1364..9a82a0c 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -4,8 +4,6 @@ import os import os.path import threading -from nose.plugins.skip import SkipTest - import coverage from coverage import env @@ -230,7 +228,7 @@ class MultiprocessingTest(CoverageTest): # Currently, this doesn't work on Windows, something about pickling # the monkey-patched Process class? if env.WINDOWS: - raise SkipTest + self.skip("Multiprocessing support doesn't work on Windows") def test_multiprocessing(self): self.make_file("multi.py", """\ |