-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcodecov.yml
More file actions
32 lines (30 loc) · 927 Bytes
/
Copy pathcodecov.yml
File metadata and controls
32 lines (30 loc) · 927 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
# Codecov configuration — https://docs.codecov.com/docs/codecov-yaml
#
# Only the Kotlin binding reports coverage (Kover, JVM target). Kover
# instruments JVM bytecode; Native/JS/Wasm execution is not counted.
# The project status GATES on regression (target: auto, ±1% tolerance); the
# patch status stays advisory to avoid blocking small PRs.
coverage:
precision: 2
round: down
range: "60...100"
status:
project:
default:
target: auto # gate: fail if overall coverage regresses
threshold: 1% # tolerate ≤1% dips (rounding, flaky lines)
informational: false
patch:
default:
informational: true # advisory only — don't block small PRs on patch noise
comment:
layout: "reach, diff, flags"
require_changes: true
ignore:
- "**/build/**"
- "**/api/**"
- "**/*Test*.kt"
- "swift/**"
- "python/**"
- "typescript/**"
- "csharp/**"