We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cc55c commit 3e9205fCopy full SHA for 3e9205f
igor.py
@@ -221,6 +221,10 @@ def do_combine_html():
221
cov.load()
222
cov.combine()
223
cov.save()
224
+ # A new Coverage to turn on messages. Better would be to have tighter
225
+ # control over message verbosity...
226
+ cov = coverage.Coverage(config_file="metacov.ini", messages=True)
227
+ cov.load()
228
show_contexts = bool(os.environ.get('COVERAGE_DYNCTX') or os.environ.get('COVERAGE_CONTEXT'))
229
cov.html_report(show_contexts=show_contexts)
230
0 commit comments