diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-27 10:36:16 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-27 10:36:16 -0500 |
commit | 1fa418c6c1c33117308e3d94f18f8fc1a9193393 (patch) | |
tree | 3502c943b2a3da2c41a4b59faf002db94cf3f9ac /tests/test_process.py | |
parent | a8f8bb898ac35acd493524d470223319b2271f4a (diff) | |
download | python-coveragepy-git-1fa418c6c1c33117308e3d94f18f8fc1a9193393.tar.gz |
Try out pylint spelling. Kinda noisy, but fixed some stuff.
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 7b416a00..1185c25c 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -665,7 +665,7 @@ class FailUnderTest(CoverageTest): class ProcessCoverageMixin(object): - """Set up a .pth file that causes all subprocesses to be coverage'd""" + """Set up a .pth file that causes all sub-processes to be coverage'd""" def setUp(self): super(ProcessCoverageMixin, self).setUp() # Find a place to put a .pth file. @@ -691,12 +691,12 @@ class ProcessCoverageMixin(object): class ProcessStartupTest(ProcessCoverageMixin, CoverageTest): - """Test that we can measure coverage in subprocesses.""" + """Test that we can measure coverage in sub-processes.""" def test_subprocess_with_pth_files(self): # pragma: not covered if METACOV: raise SkipTest( - "Can't test subprocess pth file suppport during metacoverage" + "Can't test sub-process pth file suppport during metacoverage" ) # Main will run sub.py @@ -744,7 +744,7 @@ class ProcessStartupWithSourceTest(ProcessCoverageMixin, CoverageTest): ): # pragma: not covered if METACOV: raise SkipTest( - "Can't test subprocess pth file suppport during metacoverage" + "Can't test sub-process pth file suppport during metacoverage" ) def fullname(modname): |