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 | fd2284632777a235ac663b7b9912246b30bc538b (patch) | |
tree | 7e0fa1d7f0a1a830bb49c275054c855399ddd6e1 /tests | |
parent | 498f7c997393752fd626af2c4353d5c9d7a85806 (diff) | |
download | python-coveragepy-fd2284632777a235ac663b7b9912246b30bc538b.tar.gz |
Get rid of napoleon style docstrings, they don't format nicely.
Diffstat (limited to 'tests')
-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 3a05eaa..8255f98 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: |