Skip to content

Commit 3e9205f

Browse files
committed
build: fine-tune the messages we get from metacov
1 parent 40cc55c commit 3e9205f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

igor.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,10 @@ def do_combine_html():
221221
cov.load()
222222
cov.combine()
223223
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()
224228
show_contexts = bool(os.environ.get('COVERAGE_DYNCTX') or os.environ.get('COVERAGE_CONTEXT'))
225229
cov.html_report(show_contexts=show_contexts)
226230

0 commit comments

Comments
 (0)