diff options
author | BonfaceKilz | 2020-07-24 01:40:31 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-07-24 03:47:45 +0300 |
commit | a9282de4f07f37f120b165ff2650468e014f1984 (patch) | |
tree | edc45b7ba7f2f3869b977d264a564c7179f55e03 /wqflask | |
parent | 6fcac789a4664903b8588cfa1bb321fdb081ec05 (diff) | |
download | genenetwork2-a9282de4f07f37f120b165ff2650468e014f1984.tar.gz |
Move .coveragerc to wqflask/
* .coveragerc: Move .coveragerc to wqflask so that the coverage test tool can
pick it up automatically without having to add an `--rc-file` flag
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/.coveragerc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/wqflask/.coveragerc b/wqflask/.coveragerc new file mode 100644 index 00000000..939e51b9 --- /dev/null +++ b/wqflask/.coveragerc @@ -0,0 +1,28 @@ +[run] +branch = True + +[report] +omit = + */site-packages/* + tests/* +# 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
\ No newline at end of file |