-
Notifications
You must be signed in to change notification settings - Fork 881
Expand file tree
/
Copy pathcodecov.yml
More file actions
61 lines (54 loc) · 1.42 KB
/
codecov.yml
File metadata and controls
61 lines (54 loc) · 1.42 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
coverage:
precision: 2
round: down
status:
project:
default:
informational: true # PR fast-path uploads are partial; avoid scary global regressions.
target: auto
threshold: 3% # allow this much decrease on project
sei-chain:
target: 40%
flags:
- sei-chain
sei-chain-pr:
informational: true
flags:
- sei-chain-pr
patch:
default:
informational: true # Show patch coverage, but do not fail CI for it.
target: 50% # Keep displayed goal stable across PRs.
threshold: 5% # Toleration for noisy small diffs.
comment:
layout: "reach,diff,flags,tree,betaprofiling"
behavior: default # update if exists else create new
require_changes: true
ignore:
# Common documentation and metadata
- "**/docs/**/*"
- "**/*.md"
- "**/*.rst"
- "**/example/**/*"
- "**/benchmark/**/*"
# Generated protobuf files
- "**/*.pb.go"
- "**/*.pb.gw.go"
# Tests and test utilities
- "**/integration_test/**/*"
- "**/testutil/**/*"
- "**/x/**/test_common.go"
- "**/x/**/testdata/**/*"
# Scripts, tooling, and contribution helpers
- "**/scripts/**/*"
- "**/contrib/**/*"
- "**/docker/**/*"
# Project-specific exclusions
- "precompiles/**/legacy/**/*"
- "**/cli/**/*"
- "sei-db/state_db/bench"
flags:
sei-chain:
carryforward: true
sei-chain-pr:
carryforward: false