-
Notifications
You must be signed in to change notification settings - Fork 533
/
.coveragerc
51 lines (42 loc) · 1006 Bytes
/
.coveragerc
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[run]
branch = 1
cover_pylib = 0
include=*faust/*
omit = t.*
[report]
omit =
*/python?.?/*
*/site-packages/*
*/pypy/*
# tested by functional tests
*/faust/cli/agents.py
*/faust/cli/livecheck.py
*/faust/cli/model.py
*/faust/cli/models.py
*/faust/cli/reset.py
*/faust/cli/send.py
*/faust/cli/tables.py
*/faust/cli/worker.py
*/faust/web/apps/*
*/faust/assignor/*
*/faust/transport/drivers/memory.py
*/faust/transport/drivers/confluent.py
# tested by integration
*/faust/tables/recovery.py
# not needed
*/faust/utils/functional.py
*/faust/utils/kafka/*
*/faust/utils/iso8601.py
*/faust/utils/platforms.py
*/faust/utils/tracing.py
*/faust/types/*
*/faust/__main__.py
# deprecated
*/faust/app/_attached.py
exclude_lines =
# Have to re-enable the standard pragma
if\ typing\.TYPE_CHECKING\:
pragma: no cover
if sys.platform == 'win32':
if DEBUG:
\@abc\.abstractmethod