-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodecov.yml
More file actions
31 lines (27 loc) · 837 Bytes
/
codecov.yml
File metadata and controls
31 lines (27 loc) · 837 Bytes
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
# Codecov configuration for OpenSPP
# https://docs.codecov.io/docs/codecov-yaml
coverage:
status:
project:
default:
# Only check coverage on files changed in this PR, not the entire project.
# CI only tests changed modules, so project-wide coverage would always drop
# on PRs that don't re-test every module.
only_pulls: true
patch:
default:
target: 70%
# Each module uploads with its own flag (flags: ${{ matrix.module }} in CI).
# Carry forward coverage from previous commits so modules not tested in this
# PR still contribute to overall project coverage.
flag_management:
default_rules:
carryforward: true
comment:
layout: "reach,diff,flags,files"
behavior: default
require_changes: false
ignore:
- "**/tests/**"
- "**/migrations/**"
- "scripts/**"