summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--igor.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/igor.py b/igor.py
index a7c5f963..f4c5d22f 100644
--- a/igor.py
+++ b/igor.py
@@ -221,6 +221,10 @@ def do_combine_html():
cov.load()
cov.combine()
cov.save()
+ # A new Coverage to turn on messages. Better would be to have tighter
+ # control over message verbosity...
+ cov = coverage.Coverage(config_file="metacov.ini", messages=True)
+ cov.load()
show_contexts = bool(os.environ.get('COVERAGE_DYNCTX') or os.environ.get('COVERAGE_CONTEXT'))
cov.html_report(show_contexts=show_contexts)