diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-31 07:51:51 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-31 07:51:51 -0400 |
| commit | 5164d566f03894f0fe9f29dc4e9721edfdf32818 (patch) | |
| tree | b111451d253cdd48500fce07c844d6aced8fedc0 /tests/farm/html/run_partial.py | |
| parent | 0c895c59e72c7972533a32add7a771b745fa2089 (diff) | |
| download | python-coveragepy-git-5164d566f03894f0fe9f29dc4e9721edfdf32818.tar.gz | |
Convert farm html tests to goldtests.
Diffstat (limited to 'tests/farm/html/run_partial.py')
| -rw-r--r-- | tests/farm/html/run_partial.py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/farm/html/run_partial.py b/tests/farm/html/run_partial.py deleted file mode 100644 index fedf7082..00000000 --- a/tests/farm/html/run_partial.py +++ /dev/null @@ -1,34 +0,0 @@ -# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 -# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt - -import sys - -def html_it(): - """Run coverage.py 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_py.html", - '<p id="t8" class="stm run hide_run">', - '<p id="t11" class="stm run hide_run">', - '<p id="t14" class="stm run hide_run">', - # The "if 0" and "if 1" statements are optimized away. - '<p id="t17" class="pln">', - ) -contains("html_partial/index.html", - '<a href="partial_py.html">partial.py</a>', - ) -contains("html_partial/index.html", - '<span class="pc_cov">100%</span>' - ) - -clean("html_partial") |
