diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-01 21:15:40 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-01 21:15:40 -0500 |
commit | 6b378c06cfcf60a83e187d0c84dea44eb9f480c7 (patch) | |
tree | 1044bea53e3459baa8307a139043492aad59f0f2 | |
parent | 39112e228e9d6782983b2d73848a1f6cb87c37f2 (diff) | |
download | python-coveragepy-git-6b378c06cfcf60a83e187d0c84dea44eb9f480c7.tar.gz |
The command help said --branch was HIGHLY EXPERIMENTAL!!
-rw-r--r-- | TODO.txt | 1 | ||||
-rw-r--r-- | coverage/cmdline.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -15,6 +15,7 @@ Coverage TODO + A missing branch to leave the function shows an annotation of -1. Now "exit".
+ XML report needs to get branch information.
+ Add branch info to "coverage debug data"
++ Polish up the help, and double-check the docs.
* 3.3
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index 938099e2..cb03fb2b 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -11,7 +11,7 @@ class Opts(object): branch = optparse.Option( '', '--branch', action='store_true', - help="Measure branch execution. HIGHLY EXPERIMENTAL!" + help="Measure branch coverage in addition to statement coverage." ) directory = optparse.Option( '-d', '--directory', action='store', |