diff options
author | BonfaceKilz | 2020-07-24 01:40:31 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-07-24 03:48:30 +0300 |
commit | ea8782da5c43e695ba11ff348aeb45b24db07010 (patch) | |
tree | b77ecf0cc954dea50fd460b9534acfa4e0b91abc | |
parent | 54956208cad93565e555431845c1e0eb77e66a21 (diff) | |
download | genenetwork2-ea8782da5c43e695ba11ff348aeb45b24db07010.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
-rw-r--r-- | .coveragerc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index 8fbf85ce..00000000 --- a/.coveragerc +++ /dev/null @@ -1,28 +0,0 @@ -[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 |