-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcodecov.yml
More file actions
44 lines (41 loc) · 1.17 KB
/
Copy pathcodecov.yml
File metadata and controls
44 lines (41 loc) · 1.17 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 for the hyper monorepo. Three uploads under distinct
# flags from separate CI jobs (see .github/workflows/ci.yml):
# elixir -> cover/excoveralls.json (ExCoveralls, default suite, --no-start)
# integration -> cover/excoveralls.json (ExCoveralls, KVM E2E job, live tree)
# rust -> native/suidhelper/lcov.info (cargo llvm-cov)
coverage:
status:
project:
default:
target: auto
# Don't fail PRs on coverage deltas yet (early-stage project).
informational: true
patch:
default:
informational: true
flags:
elixir:
paths:
- lib/
carryforward: true
integration:
paths:
- lib/
carryforward: true
rust:
paths:
- native/suidhelper/src/
carryforward: true
# Generated bindings, Mix tasks, deps, and test code never count toward
# coverage. Mix tasks are operator-facing glue (install/codegen) exercised by
# running them, not by unit tests.
ignore:
- "lib/hyper/firecracker/api/operations"
- "lib/hyper/firecracker/api/schemas"
- "lib/mix"
- "test"
- "deps"
- "native/suidhelper/target"
comment:
layout: "reach, flags, files"
require_changes: false