generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy path.coveragerc
More file actions
42 lines (34 loc) · 835 Bytes
/
.coveragerc
File metadata and controls
42 lines (34 loc) · 835 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
38
39
40
41
42
[run]
parallel = True
branch = True
source =
src
omit =
**/braket/ir/*
**/braket/device_schema/*
**/braket/schema_common/*
**/braket/task_result/*
**/braket/simulator/*
*/site-packages/braket/*
[paths]
source =
src
*/site-packages/braket
[report]
show_missing = True
ignore_errors = True
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Skipping import testing
from importlib.metadata import entry_points
# Don't complain if tests don't hit defensive assertion code:
raise NotImplementedError
# Avoid situation where system version causes coverage issues
if sys.version_info.minor == 9:
# Avoid type checking import conditionals
if TYPE_CHECKING:
[html]
directory = build/coverage
[xml]
output = build/coverage/coverage.xml