diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-30 17:12:08 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-31 06:50:39 -0400 |
commit | bb78d7e1a77c9b882f9e4547e3e55d8b1f50e126 (patch) | |
tree | bdaf8f428f09aeb5202135099aab9f770a816e16 /igor.py | |
parent | 79f832f2f50b441cccf617954cdd51f411c68677 (diff) | |
download | python-coveragepy-git-bb78d7e1a77c9b882f9e4547e3e55d8b1f50e126.tar.gz |
test: when we measure our coverage, get a json report also
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -200,6 +200,7 @@ def do_combine_html(): show_contexts = bool(os.environ.get('COVERAGE_DYNCTX') or os.environ.get('COVERAGE_CONTEXT')) cov.html_report(show_contexts=show_contexts) cov.xml_report() + cov.json_report(pretty_print=True) def do_test_with_tracer(tracer, *runner_args): |