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 5d449ad commit f57548cCopy full SHA for f57548c
tests/run_tests.py
@@ -88,11 +88,13 @@ def _initialize_coverage():
88
89
def _finalize_coverage(cov):
90
"""
91
- Stops covering code and writes out coverage.xml in the current directory.
+ Stops covering code and writes out reports.
92
93
cov.stop()
94
cov.report()
95
cov.xml_report(outfile="coverage.xml")
96
+ cov.html_report(directory="coverage_html_report")
97
+ print "Note: Full html coverage report can be found in the coverage_html_report folder."
98
99
100
def _initialize_logging(log_to_console):
0 commit comments