diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-26 06:56:58 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-26 06:56:58 -0400 |
commit | 882171549d866c326fc54c0d6b0744c61ecfc539 (patch) | |
tree | c1a98cda25ca3d36f612fa1e2e1da96a1e21b419 /tests/test_process.py | |
parent | 00b076ba91adf36d568f991913579dd566c64924 (diff) | |
download | python-coveragepy-git-882171549d866c326fc54c0d6b0744c61ecfc539.tar.gz |
Get rid of napoleon style docstrings, they don't format nicely.
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 3a05eaa5..8255f98c 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -845,15 +845,16 @@ class ProcessStartupWithSourceTest(ProcessCoverageMixin, CoverageTest): ): # pragma: not covered """Run the test for a particular combination of factors. - Arguments: - dashm (str): Either "" (run the program as a file) or "-m" (run the - program as a module). + The arguments are all strings: - package (str): Either "" (put the source at the top level) or a - package name to use to hold the source. + * `dashm`: Either "" (run the program as a file) or "-m" (run the + program as a module). - source (str): Either "main" or "sub", which file to use as the - ``--source`` argument. + * `package`: Either "" (put the source at the top level) or a + package name to use to hold the source. + + * `source`: Either "main" or "sub", which file to use as the + ``--source`` argument. """ if env.METACOV: |