blob: f510e117241da72b74bb67a7c81934e6183d50d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
def html_it():
"""Run coverage and make an HTML report for a."""
import coverage
cov = coverage.coverage()
cov.start()
import a # pragma: nested
cov.stop() # pragma: nested
cov.html_report(a, directory="../html_a")
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_a", "html_a", size_within=10, file_pattern="*.html")
contains("html_a/a_py.html",
'<span class="key">if</span> <span class="num">1</span> <span class="op"><</span> <span class="num">2</span>',
' <span class="nam">a</span> <span class="op">=</span> <span class="num">3</span>',
'<span class="pc_cov">67%</span>'
)
contains("html_a/index.html",
'<a href="a_py.html">a.py</a>',
'<span class="pc_cov">67%</span>',
'<td class="right" data-ratio="2 3">67%</td>',
)
clean("html_a")
|