aboutsummaryrefslogtreecommitdiff
path: root/.coveragerc
blob: 7377d6026c5ef9d94c2c949b6a02e23002b807af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[run]
branch = True
omit =
    test/*
    virt/*
    setup.py
    fakesource

[report]
exclude_lines =
    __repr__
    __str__
    pragma: no cover
    raise AssertionError
    raise NotImplementedError
    if 0:
    if __name__ == .__main__.:
    \.\.\.$