-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.coveragerc
More file actions
37 lines (33 loc) · 661 Bytes
/
.coveragerc
File metadata and controls
37 lines (33 loc) · 661 Bytes
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
# Coverage configuration file
# This complements the pyproject.toml coverage settings
[run]
source =
byte_bot
packages/byte-common/src/byte_common
omit =
*/tests/*
*/__init__.py
*/migrations/*
*/.venv/*
*/site-packages/*
branch = True
parallel = True
[report]
precision = 2
show_missing = True
skip_covered = False
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
except ImportError as e:
except ImportError:
def __repr__
raise NotImplementedError
raise AssertionError
if __name__ == "__main__":
@abstractmethod
@abc.abstractmethod
[html]
directory = htmlcov
[xml]
output = coverage.xml