-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
44 lines (40 loc) · 1.2 KB
/
Copy pathcodecov.yml
File metadata and controls
44 lines (40 loc) · 1.2 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
# Codecov configuration.
#
# Coverage is collected by the build-test job in .github/workflows/ci.yml,
# which builds with -DPAYLOAD_MANAGER_ENABLE_COVERAGE=ON and runs the unit
# lane plus the Postgres repository-parity suite. The remaining integration
# suites and the end-to-end stack run in their own jobs against compose
# stacks, uninstrumented, so they contribute no coverage.
coverage:
precision: 1
round: down
range: "50...80"
status:
project:
default:
# The baseline is what it is; what matters is that it does not slide.
target: auto
threshold: 1%
informational: false
patch:
default:
# New and changed lines should be covered even while the project
# baseline is still climbing.
target: 70%
threshold: 0%
comment:
layout: "reach, diff, flags, files"
behavior: default
require_changes: true
ignore:
- "tests/**"
- "examples/**"
- "build/**"
- "cmake-build-*/**"
- "proto/google/**" # vendored googleapis protos
- "**/*.pb.h" # generated protobuf
- "**/*.pb.cc"
- "**/*.grpc.pb.h"
- "**/*.grpc.pb.cc"
- "gateway/**" # Go, covered separately if at all
- "ui/**"