forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
114 lines (110 loc) · 2.72 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
---
# When modifying this file, please validate using
# curl -X POST --data-binary @codecov.yml https://codecov.io/validate
coverage:
status:
project:
default:
target: auto # auto compares coverage to the previous base commit
informational: true
patch:
default:
informational: true
# Disable PR comments initially, until it is possible to have the information as a job summary
comment: false
github_checks:
# Until more tests are added, disable GitHub checks annotation when added lines aren't covered by tests
annotations: false
component_management:
individual_components:
- component_id: modules_database # this is an identifier that should not be changed
name: db # this is a display name, and can be changed freely
paths:
- db/**
- lib/db/**
- scripts/db.*/**
- component_id: modules_display
name: display
paths:
- display/**
- lib/display/**
- scripts/d.*/**
- component_id: modules_general
name: general
paths:
- general/**
- scripts/g.*/**
- component_id: gui
name: gui
paths:
- gui/**
- component_id: modules_imagery
name: imagery
paths:
- imagery/**
- lib/imagery/**
- scripts/i.*/**
- component_id: man
name: man
paths:
- man/**
- component_id: modules_misc
name: imagery
paths:
- misc/**
- scripts/m.*/**
- component_id: modules_postscript
name: ps
paths:
- ps/**
- component_id: modules_raster
name: raster
paths:
- raster/**
- lib/raster/**
- scripts/r.*/**
- component_id: modules_raster3d
name: raster3d
paths:
- raster3d/**
- lib/raster3d/**
- scripts/r3.*/**
- component_id: modules_temporal
name: temporal
paths:
- temporal/**
- lib/temporal/**
- scripts/t.*/**
- component_id: modules_vector
name: vector
paths:
- vector/**
- lib/vector/**
- scripts/v.*/**
- component_id: utils
paths:
- utils/**
- component_id: scripts
paths:
- scripts/**
- component_id: library
name: lib
paths:
- lib/**
- component_id: python_pygrass
name: pygrass
paths:
- python/grass/pygrass/**
- component_id: python_gunittest
name: gunittest
paths:
- python/grass/gunittest/**
- component_id: notebooks
name: notebooks (jupyter)
paths:
- python/grass/jupyter/**
- "**/*.ipynb"
- component_id: python_library
name: python library
paths:
- python/grass/**