summaryrefslogtreecommitdiff
path: root/test/farm/html/run_bom.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/farm/html/run_bom.py')
-rw-r--r--test/farm/html/run_bom.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/farm/html/run_bom.py b/test/farm/html/run_bom.py
deleted file mode 100644
index c35079be..00000000
--- a/test/farm/html/run_bom.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import sys
-
-def html_it():
- """Run coverage and make an HTML report for bom.py."""
- import coverage
- cov = coverage.coverage()
- cov.start()
- import bom # pragma: nested
- cov.stop() # pragma: nested
- cov.html_report(bom, directory="../html_bom")
-
-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_bom", "html_bom", size_within=10, file_pattern="*.html")
-contains("html_bom/bom.html",
- "<span class='str'>&quot;3&#215;4 = 12, &#247;2 = 6&#177;0&quot;</span>",
- )
-
-clean("html_bom")