1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
[flake8]
exclude =
.git,
.github,
docs/,
pdbtools/__pycache__,
tests/,
setup.py
# Ignore:
# E501: long lines
# E731: lambda warnings
# W503/W504: line breaks before/after operators
ignore = E501,E731,W503,W504
# Enable statistics at the end
statistics = True
[coverage:run]
branch = True
source = pdbtools/
[coverage:report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
docs/*
|