summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: ef69581861c1e04c2b2b78f1f652c8cffd0ac149 (plain)
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
[run]
source =
    urllib3

[paths]
source =
    src/urllib3
    */urllib3
    *\urllib3

[report]
omit =
    src/urllib3/contrib/pyopenssl.py
    src/urllib3/contrib/securetransport.py
    src/urllib3/contrib/_securetransport/*

exclude_lines =
    except ModuleNotFoundError:
    except ImportError:
    pass
    import
    raise NotImplementedError
    .* # Platform-specific.*
    .*:.* # Python \d.*
    .* # Abstract
    .* # Defensive:
    if (?:typing.)?TYPE_CHECKING:
    ^\s*?\.\.\.\s*$