diff options
author | BonfaceKilz | 2020-07-24 01:09:11 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-07-24 03:48:28 +0300 |
commit | 54956208cad93565e555431845c1e0eb77e66a21 (patch) | |
tree | c8e65420bf0761a2d1b1d8ad94164c181d85d4a7 | |
parent | bcf98cc6c1f0208cc8f9a21d36196627e1d6e6b6 (diff) | |
download | genenetwork2-54956208cad93565e555431845c1e0eb77e66a21.tar.gz |
Add basic config for coverage tool
* .coveragerc: add it
-rw-r--r-- | .coveragerc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..8fbf85ce --- /dev/null +++ b/.coveragerc @@ -0,0 +1,28 @@ +[run] +branch = True +omit = + */site-packages/* + tests/* + +[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 = False + +[html] +directory = coverage_html_report |