summaryrefslogtreecommitdiff
path: root/test/farm/html/run_a_xml_2.py
blob: b08d7960c47e63afc19ea6f1e8c604fe54cdd437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
def html_it():
    """Run coverage and make an XML report for a."""
    import coverage
    cov = coverage.coverage(config_file="run_a_xml_2.ini")
    cov.start()
    import a
    cov.stop()
    cov.xml_report(a)

import os
if not os.path.exists("xml_2"):
    os.makedirs("xml_2")

runfunc(html_it, rundir="src")

compare("gold_x_xml", "xml_2", scrubs=[
    (r' timestamp="\d+"', ' timestamp="TIMESTAMP"'),
    (r' version="[-.\w]+"', ' version="VERSION"'),
    ])
clean("xml_2")