forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
68 lines (68 loc) · 1.5 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
coverage:
status:
patch: off
project:
default:
threshold: null
informational: true
github_checks:
annotations: false
comment:
layout: "reach, files, flags, components"
require_changes: true
component_management:
individual_components:
- component_id: reth_binary
name: reth binary
paths:
- bin/**
- crates/config/**
- crates/metrics/**
- crates/tracing/**
- component_id: blockchain_tree
name: blockchain tree
paths:
- crates/blockchain-tree/**
- component_id: staged_sync
name: pipeline
paths:
- crates/stages/**
- component_id: storage
name: storage (db)
paths:
- crates/storage/**
- component_id: trie
name: trie
paths:
- crates/trie/**
- component_id: txpool
name: txpool
paths:
- crates/transaction-pool/**
- component_id: networking
name: networking
paths:
- crates/net/**
- component_id: rpc
name: rpc
paths:
- crates/rpc/**
- component_id: consensus
name: consensus
paths:
- crates/consensus/**
- component_id: revm
name: revm
paths:
- crates/revm/**
- component_id: builder
name: payload builder
paths:
- crates/payload/**
- component_id: primitives
name: primitives
paths:
- crates/primitives/**
- crates/tasks/**
- crates/rlp/**
- crates/interfaces/**