summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-02 16:17:26 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-02 16:17:26 -0400
commitd9693657fe0c29cfa82206b493e5f75a8c8e408f (patch)
treee33cfca34ebc8d99acb29070ad9ada3da6316593
parent651f467c6700b3cb79e855edd08d3feda847ec9b (diff)
downloadpython-coveragepy-git-d9693657fe0c29cfa82206b493e5f75a8c8e408f.tar.gz
Update the man page.
-rw-r--r--doc/python-coverage.1.txt22
1 files changed, 12 insertions, 10 deletions
diff --git a/doc/python-coverage.1.txt b/doc/python-coverage.1.txt
index 9b298118..0e5869ca 100644
--- a/doc/python-coverage.1.txt
+++ b/doc/python-coverage.1.txt
@@ -79,6 +79,10 @@ GLOBAL OPTIONS
Include only files whose paths match one of these
PATTERNs. Accepts shell-style wildcards, which must be quoted.
+**--debug** `DEBUGOPT`,...
+ Debug options `DEBUGOPT`, separated by commas.
+
+
COMMAND REFERENCE
=================
@@ -93,12 +97,15 @@ COMMAND REFERENCE
\-i, --ignore-errors
Ignore errors while reading source files.
-**combine**
+**combine** [ `PATH` ... ]
Combine data from multiple coverage files collected with ``run -p``.
The combined results are written to a single file representing the
union of the data.
+ If `PATH` is specified, they are files or directories containing data to
+ be combined.
+
**erase**
Erase previously collected coverage data.
@@ -107,10 +114,6 @@ COMMAND REFERENCE
Describe how to use coverage.py.
-**help** **classic**
-
- Describe help on older command syntax.
-
**html** [ `option` ... ] [ `MODULE` ... ]
Create an HTML report of the coverage of each `MODULE` file. Each file
@@ -147,6 +150,9 @@ COMMAND REFERENCE
Show line numbers of statements in each module that weren't
executed.
+ \--skip-covered
+ Skip files with 100% coverage.
+
**run** [ `options` ... ] `PROGRAMFILE` [ `program_options` ]
Run a Python program `PROGRAMFILE`, measuring code execution.
@@ -162,10 +168,7 @@ COMMAND REFERENCE
\--concurrency `LIB`
Properly measure code using a concurrency library. Valid values are:
- thread, gevent, greenlet, eventlet.
-
- \--debug `DEBUGOPT`,...
- Debug options `DEBUGOPT`, separated by commas.
+ thread, gevent, greenlet, eventlet, multiprocessing.
\-L, --pylib
Measure coverage even inside the Python installed library, which
@@ -207,7 +210,6 @@ COVERAGE_FILE
Path to the file where coverage measurements are collected to and
reported from. Default: ``.coverage`` in the current working directory.
-
HISTORY
=======