summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-05-31 10:29:22 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-05-31 10:29:22 -0400
commitf16cd373f1939788df624ebb69c862c295738a13 (patch)
tree000fc7249b9c42a1314b12d603ad6510b7dcf1b0
parentd434ee5e028f1e3f5bcff908e46d1298e5bfcfd7 (diff)
downloadpython-coveragepy-f16cd373f1939788df624ebb69c862c295738a13.tar.gz
Branch coverage works well, no need for alarm.
-rw-r--r--coverage/runners/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/runners/plugin.py b/coverage/runners/plugin.py
index cc30e86..e9d75b2 100644
--- a/coverage/runners/plugin.py
+++ b/coverage/runners/plugin.py
@@ -106,7 +106,7 @@ xml Create an XML report of coverage results.
help="Include test modules in coverage report "),
optparse.Option('--cover-branch', action='store_true',
- help="Measure branch execution. HIGHLY EXPERIMENTAL!"),
+ help="Measure branch execution."),
optparse.Option('--cover-directory', action='store', metavar="DIR",
help="Write the output files to DIR."),
@@ -142,4 +142,4 @@ xml Create an XML report of coverage results.
optparse.Option('--cover-append', action='store_false',
help=("Append coverage data to .coverage, otherwise it "
"is started clean with each run."))
-]
+ ]