|
| 1 | +--- |
| 2 | +# When modifying this file, please validate using |
| 3 | +# curl -X POST --data-binary @codecov.yml https://codecov.io/validate |
| 4 | + |
| 5 | +coverage: |
| 6 | + status: |
| 7 | + project: |
| 8 | + default: |
| 9 | + target: auto # auto compares coverage to the previous base commit |
| 10 | + informational: true |
| 11 | + patch: |
| 12 | + default: |
| 13 | + informational: true |
| 14 | + |
| 15 | +# Disable PR comments initially, until it is possible to have the information as a job summary |
| 16 | +comment: false |
| 17 | + |
| 18 | +github_checks: |
| 19 | + # Until more tests are added, disable GitHub checks annotation when added lines aren't covered by tests |
| 20 | + annotations: false |
| 21 | + |
| 22 | +component_management: |
| 23 | + individual_components: |
| 24 | + - component_id: modules_database # this is an identifier that should not be changed |
| 25 | + name: db # this is a display name, and can be changed freely |
| 26 | + paths: |
| 27 | + - db/** |
| 28 | + - lib/db/** |
| 29 | + - scripts/db.*/** |
| 30 | + - component_id: modules_display |
| 31 | + name: display |
| 32 | + paths: |
| 33 | + - display/** |
| 34 | + - lib/display/** |
| 35 | + - scripts/d.*/** |
| 36 | + - component_id: modules_general |
| 37 | + name: general |
| 38 | + paths: |
| 39 | + - general/** |
| 40 | + - scripts/g.*/** |
| 41 | + - component_id: gui |
| 42 | + name: gui |
| 43 | + paths: |
| 44 | + - gui/** |
| 45 | + - component_id: modules_imagery |
| 46 | + name: imagery |
| 47 | + paths: |
| 48 | + - imagery/** |
| 49 | + - lib/imagery/** |
| 50 | + - scripts/i.*/** |
| 51 | + - component_id: man |
| 52 | + name: man |
| 53 | + paths: |
| 54 | + - man/** |
| 55 | + - component_id: modules_misc |
| 56 | + name: imagery |
| 57 | + paths: |
| 58 | + - misc/** |
| 59 | + - scripts/m.*/** |
| 60 | + - component_id: modules_postscript |
| 61 | + name: ps |
| 62 | + paths: |
| 63 | + - ps/** |
| 64 | + - component_id: modules_raster |
| 65 | + name: raster |
| 66 | + paths: |
| 67 | + - raster/** |
| 68 | + - lib/raster/** |
| 69 | + - scripts/r.*/** |
| 70 | + - component_id: modules_raster3d |
| 71 | + name: raster3d |
| 72 | + paths: |
| 73 | + - raster3d/** |
| 74 | + - lib/raster3d/** |
| 75 | + - scripts/r3.*/** |
| 76 | + - component_id: modules_temporal |
| 77 | + name: temporal |
| 78 | + paths: |
| 79 | + - temporal/** |
| 80 | + - lib/temporal/** |
| 81 | + - scripts/t.*/** |
| 82 | + - component_id: modules_vector |
| 83 | + name: vector |
| 84 | + paths: |
| 85 | + - vector/** |
| 86 | + - lib/vector/** |
| 87 | + - scripts/v.*/** |
| 88 | + - component_id: utils |
| 89 | + paths: |
| 90 | + - utils/** |
| 91 | + - component_id: scripts |
| 92 | + paths: |
| 93 | + - scripts/** |
| 94 | + - component_id: library |
| 95 | + name: lib |
| 96 | + paths: |
| 97 | + - lib/** |
| 98 | + - component_id: python_pygrass |
| 99 | + name: pygrass |
| 100 | + paths: |
| 101 | + - python/grass/pygrass/** |
| 102 | + - component_id: python_gunittest |
| 103 | + name: gunittest |
| 104 | + paths: |
| 105 | + - python/grass/gunittest/** |
| 106 | + - component_id: notebooks |
| 107 | + name: notebooks (jupyter) |
| 108 | + paths: |
| 109 | + - python/grass/jupyter/** |
| 110 | + - "**/*.ipynb" |
| 111 | + - component_id: python_library |
| 112 | + name: python library |
| 113 | + paths: |
| 114 | + - python/grass/** |
0 commit comments