-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
27 lines (25 loc) · 824 Bytes
/
codecov.yml
File metadata and controls
27 lines (25 loc) · 824 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
# SPDX-License-Identifier: Apache-2.0
# Codecov configuration — https://docs.codecov.io/docs/codecov-yaml
coverage:
status:
project:
default:
target: auto
threshold: 2%
patch:
default:
target: 50%
threshold: 5%
ignore:
# TCK is test infrastructure, not library code.
- "tck/**"
# Postgres stores require a running database; tested via integration tests.
- "crates/a2a-server/src/store/postgres_store.rs"
- "crates/a2a-server/src/store/tenant_postgres_store.rs"
- "crates/a2a-server/src/store/pg_migration.rs"
- "crates/a2a-server/src/push/postgres_config_store.rs"
- "crates/a2a-server/src/push/tenant_postgres_config_store.rs"
# Examples are not library code.
- "examples/**"
# ITK (interop test kit) agents are not library code.
- "itk/**"