summaryrefslogtreecommitdiff
path: root/coverage
diff options
context:
space:
mode:
authorDavid Stanek <dstanek@dstanek.com>2010-05-21 23:40:04 -0400
committerDavid Stanek <dstanek@dstanek.com>2010-05-21 23:40:04 -0400
commitf1935555fb148d173b9adf2e35f687573c929370 (patch)
tree6314dcdf9216658ed1711796135dc20f2b6344de /coverage
parent6ea6858226eebbecf5196a78b216c588dd8a9098 (diff)
downloadpython-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.py2
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.