File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 14
14
a problem with coverage.py - that it starts too late to trace the coverage of
15
15
many of the most fundamental modules in the Standard Library.
16
16
17
+ DO NOT import other modules into here, it will interfere with the goal of this
18
+ code executing before all imports. This is why this file isn't type-checked.
19
+
17
20
"""
18
21
19
22
import sys
Original file line number Diff line number Diff line change @@ -23,3 +23,7 @@ warn_return_any = true
23
23
warn_unreachable = true
24
24
warn_unused_configs = true
25
25
warn_unused_ignores = true
26
+
27
+ exclude = """ (?x)(
28
+ ^coverage/fullcoverage/encodings\\ .py$ # can't import things into it.
29
+ )"""
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ setenv =
102
102
C5 =coverage/parser.py coverage/phystokens.py coverage/plugin.py coverage/plugin_support.py coverage/python.py
103
103
C6 =coverage/report.py coverage/results.py coverage/sqldata.py coverage/summary.py
104
104
C7 =coverage/templite.py coverage/tomlconfig.py coverage/types.py coverage/version.py coverage/xmlreport.py
105
+ # not done yet: html.py pytracer.py
105
106
TYPEABLE_C ={env:C1} {env:C2} {env:C3} {env:C4} {env:C5} {env:C6} {env:C7}
106
107
T1 =tests/conftest.py tests/coveragetest.py tests/goldtest.py tests/helpers.py tests/mixins.py tests/osinfo.py
107
108
T2 =tests/test_annotate.py tests/test_api.py tests/test_arcs.py tests/test_cmdline.py tests/test_collector.py tests/test_concurrency.py
You can’t perform that action at this time.
0 commit comments