diff options
Diffstat (limited to 'doc/python-coverage.1.txt')
-rw-r--r-- | doc/python-coverage.1.txt | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/doc/python-coverage.1.txt b/doc/python-coverage.1.txt index 83d35288..8f7e5c06 100644 --- a/doc/python-coverage.1.txt +++ b/doc/python-coverage.1.txt @@ -142,11 +142,15 @@ COMMAND REFERENCE Options: \-a, --append - Append coverage data to .coverage, otherwise it is started clean with each run. + Append coverage data to .coverage, otherwise it is started clean + with each run. \--branch Measure branch coverage in addition to statement coverage. + \--debug `OPTION` [ , ... ] + Debug options, separated by commas. + \-L, --pylib Measure coverage even inside the Python installed library, which isn't done by default. @@ -156,13 +160,13 @@ COMMAND REFERENCE ``.coverage`` data file name to simplify collecting data from many processes. + \--source `SOURCE` [ , ... ] + A list of packages or directories of code to be measured. + \--timid Use a simpler but slower trace method. Try this if you get seemingly impossible results! - \--source `SOURCE` [ , ... ] - A list of packages or directories of code to be measured. - |command| **xml** [ `options` ... ] [ `modules` ... ] Generate an XML report of coverage results. @@ -179,8 +183,8 @@ COMMAND REFERENCE HISTORY ======= -The ``python-coverage`` command is a Python program which calls the -``coverage`` Python library to do all the work. +The |command| command is a Python program which calls the ``coverage`` +Python library to do all the work. The library was originally developed by Gareth Rees, and is now developed by Ned Batchelder. |