summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: 357302f578aad731e75b243fc52b01112302da81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# .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

    # No need to test __repr__
    def __repr__

    # Python 2/3 compatibility
    except ImportError
    sys.version_info