-
Notifications
You must be signed in to change notification settings - Fork 30
/
.codecov.yml
103 lines (100 loc) · 2 KB
/
.codecov.yml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
codecov:
require_ci_to_pass: false
# Team Yaml
coverage:
round: down
precision: 5
status:
project:
default:
target: auto
threshold: 25%
patch:
default:
threshold: 5%
# from go.work file
flags:
# note: go.work flags should be in order of the directory structure
# also, if you're using multiple module names, you're doing something wrong
agents:
paths:
- agents/
carryforward: true
screener-api:
paths:
- contrib/screener-api/
carryforward: true
opbot:
paths:
- contrib/opbot/
carryforward: true
git-changes-action:
paths:
- contrib/git-changes-action/
carryforward: true
core:
paths:
- core/
carryforward: true
ethergo:
paths:
- ethergo/
carryforward: true
cctp-relayer:
paths:
- services/cctp-relayer/
carryforward: true
rfq:
paths:
- services/rfq/
carryforward: true
explorer:
paths:
- services/explorer/
carryforward: true
omnirpc:
paths:
- services/omnirpc/
carryforward: true
scribe:
paths:
- services/scribe/
carryforward: true
solidity-core:
paths:
- packages/contracts-core/
carryforward: true
solidity-rfq:
paths:
- packages/contracts-rfq/
carryforward: true
tools:
paths:
- tools/
carryforward: true
packages:
paths:
- packages/coverage-aggregator/
- packages/explorer-ui/
- packages/sdk-router/
- packages/widget/
carryforward: true
restclient:
paths:
- contrib/restclient/
carryforward: true
ignore:
- '**/*_generated.go'
- '**/*.abigen.go'
- '**/*_string.go'
- '**/*_gen.go'
- '**/*.pb.go'
# solidity test files
- '**/test/**.sol'
- '*/lib/*.sol'
- 'packages/contracts-core/contracts/libs/*.sol'
- 'packages/contracts-core/script/**.sol'
- 'packages/contracts-core/test/**.sol'
- 'services/scribe/grpc/client/*'
- '**/graphql/server/graph/resolver/*'
- '**/mocks/**.go'