diff options
author | David Stanek <dstanek@dstanek.com> | 2010-05-21 23:40:04 -0400 |
---|---|---|
committer | David Stanek <dstanek@dstanek.com> | 2010-05-21 23:40:04 -0400 |
commit | f1935555fb148d173b9adf2e35f687573c929370 (patch) | |
tree | 6314dcdf9216658ed1711796135dc20f2b6344de /coverage | |
parent | 6ea6858226eebbecf5196a78b216c588dd8a9098 (diff) | |
download | python-coveragepy-f1935555fb148d173b9adf2e35f687573c929370.tar.gz |
modified to use report as the default action - the way the old nose plugin worked
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/testplugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/testplugin.py b/coverage/testplugin.py index 4ff598a..89334d7 100644 --- a/coverage/testplugin.py +++ b/coverage/testplugin.py @@ -94,7 +94,7 @@ class CoverageTestWrapper(object): options = [ optparse.Option('', - '--cover-action', action='append', default=None, + '--cover-action', action='append', default=['report'], dest='cover_actions', type="choice", choices=['annotate', 'html', 'report', 'xml'], help="""\ annotate Annotate source files with execution information. |