diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-15 06:47:37 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-15 06:47:37 -0400 |
commit | 624ef0d0662d27fc3c95b2820c98bad5d69f2270 (patch) | |
tree | c0840c9226db42c301ffad13d76884029374870d /tests/test_process.py | |
parent | 9ac9f055de890a9f4cc8be0c0a3cc00f9be31d11 (diff) | |
download | python-coveragepy-git-624ef0d0662d27fc3c95b2820c98bad5d69f2270.tar.gz |
Use ntpath so Windows file manipulation can be tested the same everywhere.
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 9bd72119..3023a18c 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -890,9 +890,7 @@ class ProcessStartupTest(ProcessCoverageMixin, CoverageTest): def test_subprocess_with_pth_files(self): # pragma: not covered if env.METACOV: - self.skip( - "Can't test sub-process pth file suppport during metacoverage" - ) + self.skip("Can't test sub-process pth file suppport during metacoverage") # Main will run sub.py self.make_file("main.py", """\ @@ -954,9 +952,7 @@ class ProcessStartupWithSourceTest(ProcessCoverageMixin, CoverageTest): """ if env.METACOV: - self.skip( - "Can't test sub-process pth file suppport during metacoverage" - ) + self.skip("Can't test sub-process pth file suppport during metacoverage") def fullname(modname): """What is the full module name for `modname` for this test?""" |