File: .coveragerc

package info (click to toggle)
python-pgpy 0.6.0-1.5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,220 kB
  • sloc: python: 8,453; makefile: 155; sh: 10
file content (21 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[run]
branch = False

[report]
exclude_lines =
    # keep the standard pragma
    pragma: no cover

    # skip abstract methods
    @(abc\.)?abstract

    # Python 2.x compatibility stuff
    if six.PY2:
    if six.PY3:
    def __nonzero__

    # debug-only code
    def __repr__

    # defensive code
    raise NotImplementedError