diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-31 10:29:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-31 10:29:22 -0400 |
commit | 48c3bdb3c87e1a701c4f6b88c516232fe868dc3b (patch) | |
tree | b1b16f451fd6a4b7c5bb7f7eeee1af56481dca9c /coverage/runners/plugin.py | |
parent | 186bc605fd271f076cc79064bd134c78249e1647 (diff) | |
download | python-coveragepy-git-48c3bdb3c87e1a701c4f6b88c516232fe868dc3b.tar.gz |
Branch coverage works well, no need for alarm.
Diffstat (limited to 'coverage/runners/plugin.py')
-rw-r--r-- | coverage/runners/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/runners/plugin.py b/coverage/runners/plugin.py index cc30e86b..e9d75b27 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.")) -] + ] |