forked from astera-hq/Astera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
37 lines (35 loc) · 838 Bytes
/
Copy pathcodecov.yml
File metadata and controls
37 lines (35 loc) · 838 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
33
34
35
36
37
# #781: per-flag coverage tracking for contracts vs. frontend, with a
# required PR status check that fails when either flag's coverage drops
# below its target. `informational: false` (the default) is what makes the
# status check actually block/fail the PR rather than just report a number.
coverage:
status:
project:
default: false
contracts:
target: 80%
flags:
- contracts
threshold: 1%
frontend:
target: 70%
flags:
- frontend
threshold: 1%
patch:
default:
target: 80%
threshold: 1%
flags:
contracts:
paths:
- contracts/
carryforward: false
frontend:
paths:
- frontend/
carryforward: false
comment:
layout: 'reach, diff, flags, files'
behavior: default
require_changes: false