def html_it():
"""Run coverage and make an HTML report for everything."""
import coverage
cov = coverage.coverage()
cov.start()
import here
cov.stop()
cov.html_report(directory="../otherhtml")
runfunc(html_it, rundir="src", addtopath="../othersrc")
# Different platforms will name the "other" file differently. Rename it
import os, glob
for p in glob.glob("otherhtml/*_other.html"):
os.rename(p, "otherhtml/blah_blah_other.html")
# HTML files will change often. Check that the sizes are reasonable,
# and check that certain key strings are in the output.
compare("gold_other", "otherhtml", size_within=10)
contains("otherhtml/index.html",
"here",
"other.html'>", "other",
)
clean("otherhtml")