-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcodecov.yml
More file actions
83 lines (76 loc) · 2.06 KB
/
codecov.yml
File metadata and controls
83 lines (76 loc) · 2.06 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
fixes:
- "python/src/moocore/libmoocore/::c/" # Python package symlink
- "src/moocore/libmoocore/::c/" # Python package symlink
- "r/src/libmoocore/::c/" # R package symlink
- "src/libmoocore/::c/" # R package symlink
- ".tox/cov*/lib/*/site-packages/::python/src/"
comment:
layout: "header, diff, flags, components" # show component info in the PR comment
flag_management:
default_rules: # the rules that will be followed for any flag added, generally
carryforward: true
component_management:
default_rules: # default rules that will be inherited by all components
statuses:
- type: project # in this case every component that doesn't have a status defined will have a project type one
target: auto
threshold: 1%
branches:
- "!main"
- type: patch
target: auto
threshold: 1%
informational: true
individual_components:
- component_id: c_shared
name: C
paths:
- c/**
statuses:
- type: project
target: auto
threshold: 1%
- type: patch
target: auto
threshold: 1%
informational: true
- component_id: r_src
name: R
paths:
- r/R/**
- r/src/**
statuses:
- type: project
target: auto
threshold: 1%
informational: true
- type: patch
target: auto
threshold: 1%
informational: true
- component_id: python_tests
name: Python tests
paths:
- python/tests/**
- python/examples/**
statuses:
- type: project
target: 100%
informational: false
- type: patch
target: auto
threshold: 1%
informational: true
- component_id: python_src
name: Python src
paths:
- python/src/**
statuses:
- type: project
target: auto
threshold: 1%
informational: true
- type: patch
target: auto
threshold: 1%
informational: true