import sys def html_it(): """Run coverage and make an HTML report for partial.""" import coverage cov = coverage.coverage(branch=True) cov.start() import partial # pragma: nested cov.stop() # pragma: nested cov.html_report(partial, directory="../html_partial") runfunc(html_it, rundir="src") # HTML files will change often. Check that the sizes are reasonable, # and check that certain key strings are in the output. compare("gold_partial", "html_partial", size_within=10, file_pattern="*.html") contains("html_partial/partial.html", "

", "

", "

", # The "if 0" and "if 1" statements are optimized away. "

", ) contains("html_partial/index.html", "partial", ) contains("html_partial/index.html", "100%" ) clean("html_partial")