-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.coveragerc
38 lines (33 loc) · 975 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
###############################################################################
#
# Configuration file .coveragerc for control of the behaviour of the
# coverage.py / pytest-cov plugins.
# See full doc here:
# - https://coverage.readthedocs.io/en/latest/config.html
# - https://pytest-cov.readthedocs.io/en/latest/index.html
#
# Created: Dmitrii Gusev, 09.10.2022
# Modified: Dmitrii Gusev, 05.05.2024
#
###############################################################################
[run]
branch = True
data_file = .coverage/.coverage
omit =
*__init__*
*/temp/*
*/tests/*
*/.vscode/*
[report]
show_missing = True
# -- show 2 decimal digits for coverage values
precision = 2
[html]
directory = .coverage/htmlcoverage
title = "PyUtilities :: Unit Tests Coverage Report"
[xml]
output = .coverage/coverage.xml
# -- used by coverage.py, ignored by pytest-cov
[json]
output = .coverage/coverage.json
pretty_print = True