-
Notifications
You must be signed in to change notification settings - Fork 31
/
codecov.yml
43 lines (42 loc) · 1.02 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
coverage:
status:
# Disable patch reporting which we don't really use anyway
# See https://docs.codecov.com/docs/commit-status#patch-status
patch: off
project:
default:
target: auto
# Coverage can drop by 50% and still be a success (don't fail the build)
threshold: 50%
openc3-ruby:
threshold: 50%
paths:
- openc3/lib
flags:
- ruby-backend
python:
threshold: 50%
paths:
- openc3/python
flags:
- python
frontend:
threshold: 50%
paths:
- openc3-cosmos-init
flags:
- frontend
api:
threshold: 50%
paths:
- openc3-cosmos-cmd-tlm-api
- openc3-cosmos-script-runner-api
flags:
- ruby-api
flag_management:
default_rules: # the rules that will be followed for any flag added, generally
carryforward: true
statuses:
- type: project
target: auto
threshold: 50%