pyhton 2.7 removed, codecov

pull/9/head
Thomas Irgang 2017-07-19 15:15:07 +02:00
rodzic 9403dbadaf
commit 8511e798d7
2 zmienionych plików z 27 dodań i 0 usunięć

26
.coveragerc 100644
Wyświetl plik

@ -0,0 +1,26 @@
# .coveragerc to control coverage.py
[run]
branch = True
[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

Wyświetl plik

@ -16,3 +16,4 @@ script:
after_success:
- codecov
- coverage report -m