forked from microsoft/debugpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coveragerc
39 lines (34 loc) · 788 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
[run]
branch = True
parallel = True
include =
src/debugpy/*
omit =
src/debugpy/__init__.py
src/debugpy/_version.py
src/debugpy/_vendored/*
src/debugpy/server/*
data_file = coverage/.coverage
[report]
exclude_also =
# __repr__ is mostly used for error messages.
def __repr__
# Asserts and error conditions.
raise AssertionError
raise NotImplementedError
raise TypeError
raise ValueError
raise AttributeError
raise RuntimeError
raise ComponentNotAvailable
raise messaging.MessageHandlingError
\.isnt_valid\(
\.cant_handle\(
# Code that's deliberately excluded.
if 0:
if __name__ == .__main__.:
[html]
directory = coverage/html
title = debugpy coverage report
[xml]
output = coverage/coverage.xml