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 cfbceb5 commit b6db3b7Copy full SHA for b6db3b7
igor.py
@@ -240,8 +240,9 @@ def do_combine_html():
240
show_contexts = bool(
241
os.getenv("COVERAGE_DYNCTX") or os.getenv("COVERAGE_CONTEXT"),
242
)
243
- cov.html_report(show_contexts=show_contexts)
+ total = cov.html_report(show_contexts=show_contexts)
244
cov.json_report(show_contexts=show_contexts, pretty_print=True)
245
+ print(f"Total: {total:.3f}%")
246
247
248
def do_test_with_core(core, *runner_args):
0 commit comments