-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codecov.yaml
68 lines (66 loc) · 1.66 KB
/
.codecov.yaml
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
ignore:
- "rust/src/lib.rs" # codecov seriously screws this one up, and thinks it has >1k lines despite having ~60
coverage:
status:
project:
default:
informational: true
patch:
default:
informational: true
component_management:
default_rules: # default rules that will be inherited by all components
statuses:
- type: project # in this case every component that doens't have a status defined will have a project type one
target: auto
branches:
- "!main"
individual_components:
- component_id: module_c # this is an identifier that should not be changed
name: C # this is a display name, and can be changed freely
paths:
- c/**
- component_id: module_cplusplus
name: C++
paths:
- cplusplus/**
- component_id: module_csharp
name: C#
paths:
- csharp/**
- component_id: module_fortran
name: Fortran
paths:
- fortran/**
- component_id: module_java
name: Java
paths:
- java/**
- component_id: module_javascript
name: JavaScript
paths:
- javascript/**
- component_id: module_lua
name: Lua
paths:
- lua/**
- component_id: module_python
name: Python
paths:
- python/**
- component_id: module_rust
name: Rust
paths:
- rust/**
flag_management:
default_rules: # the rules that will be followed for any flag added, generally
carryforward: true
individual_flags:
- name: C
carryforward: true
paths:
- c/**
- name: Cpp
carryforward: true
paths:
- cplusplus/**