File: setup.cfg

package info (click to toggle)
pdb-tools 2.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,648 kB
  • sloc: python: 9,220; makefile: 22
file content (33 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (2)
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/*