Permalink
Cannot retrieve contributors at this time
# .coveragerc to control coverage.py | |
[run] | |
#plugins = | |
# shelf_coverage_plugin | |
branch = True | |
source = | |
ht | |
houdini/toolbar | |
# /var/tmp/ | |
omit = | |
*tests* | |
*__init__* | |
python/ht/machinery/* | |
*/constants.py | |
python/ht/events/types.py | |
python/ht/inline/lib.py | |
python/ht/ui/aovs/* | |
python/ht/ui/paste/* | |
python/ht/ui/icons.py | |
disable_warnings = | |
module-not-imported | |
module-not-measured | |
[report] | |
# Regexes for lines to exclude from consideration | |
exclude_lines = | |
# Have to re-enable the standard pragma | |
pragma: no cover | |
# Don't complain about missing debug-only code: | |
def __repr__ | |
if self\.debug | |
# Don't complain if tests don't hit defensive assertion code: | |
raise AssertionError | |
raise NotImplementedError | |
# Don't complain if non-runnable code isn't run: | |
if 0: | |
if __name__ == .__main__.: | |
ignore_errors = True | |
[html] | |
directory = coverage_html_report |