-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcodecov.yml
More file actions
92 lines (88 loc) · 2.38 KB
/
Copy pathcodecov.yml
File metadata and controls
92 lines (88 loc) · 2.38 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
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
comment: false
coverage:
status:
project:
default:
target: auto
threshold: 1%
patch:
default:
target: auto
# One flag per tested package so each can carry its own badge and only counts
# its own sources. `carryforward` keeps a flag's last coverage when a build did
# not touch that package.
flag_management:
default_rules:
carryforward: true
flags:
config:
paths:
- packages/config/
format-json:
paths:
- packages/format-json/
format-po:
paths:
- packages/format-po/
integration:
paths:
- packages/integration/
integration-carbon:
paths:
- packages/integration-carbon/
integration-react:
paths:
- packages/integration-react/
plugin-babel:
paths:
- packages/plugin-babel/
plugin-unplugin:
paths:
- packages/plugin-unplugin/
transform-js:
paths:
- packages/transform-js/
transform-jsx:
paths:
- packages/transform-jsx/
# Components are path-based slices of the single merged report (no extra
# uploads). They drive per-package PR status checks and dashboard breakdown.
# Every package is listed so untested ones stay visible as we push toward full
# coverage. Statuses are informational so a 0% package never blocks a PR.
component_management:
default_rules:
statuses:
- type: project
target: auto
informational: true
individual_components:
- component_id: config
name: config
paths: [packages/config/**]
- component_id: format-json
name: format-json
paths: [packages/format-json/**]
- component_id: format-po
name: format-po
paths: [packages/format-po/**]
- component_id: integration
name: integration
paths: [packages/integration/**]
- component_id: integration-carbon
name: integration-carbon
paths: [packages/integration-carbon/**]
- component_id: integration-react
name: integration-react
paths: [packages/integration-react/**]
- component_id: plugin-babel
name: plugin-babel
paths: [packages/plugin-babel/**]
- component_id: plugin-unplugin
name: plugin-unplugin
paths: [packages/plugin-unplugin/**]
- component_id: transform-js
name: transform-js
paths: [packages/transform-js/**]
- component_id: transform-jsx
name: transform-jsx
paths: [packages/transform-jsx/**]