-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy path.coveragerc-py39
More file actions
30 lines (28 loc) · 1 KB
/
.coveragerc-py39
File metadata and controls
30 lines (28 loc) · 1 KB
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
[run]
; This flag writes per-process coverage data files so subprocess coverage
; can be combined with the main test process by pytest-cov. Works with COVERAGE_PROCESS_START in
; tox.ini env variable
; see: https://coverage.readthedocs.io/en/6.5.0/cmd.html#combining-data-files-coverage-combine
parallel = true
[paths]
; Normalize installed package paths back to source tree so coverage data
; from different tox envs can be combined into a single report
source =
aws-opentelemetry-distro/src/amazon
.tox/3.*/lib/python*/site-packages/amazon
*/site-packages/amazon
[report]
include_namespace_packages = true
fail_under = 95.00
precision = 2
; Exclude framework instrumentation not installed on 3.9,
; test files that share the amazon namespace, and pip build artifacts
; so only source code is reported
omit =
*/instrumentation/crewai/*
*/instrumentation/llama_index/*
*/instrumentation/langchain/*
*/instrumentation/mcp/*
*/instrumentation/openai_agents/*
*/tests/*
*/pip-build-env-*/*