diff options
-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', |