-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathcodecov.yml
More file actions
61 lines (52 loc) · 1.33 KB
/
codecov.yml
File metadata and controls
61 lines (52 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
github_checks:
annotations: false
comment:
require_changes: true
codecov:
require_ci_to_pass: true # Require CI to pass before uploading coverage
notify:
wait_for_ci: true
# https://about.codecov.io/blog/the-5-levels-of-code-coverage-how-to-build-a-testing-culture-in-your-organization/
# Setting this configuration as recommended for beginners in the above blog post.
# We can introduce more strict settings as we progress.
coverage:
status:
project:
default:
target: 70%
informational: false
patch:
default:
target: 80%
informational: false
# Define flags for different parts of the codebase
flags:
# Core packages
core:
paths:
- packages/core/**/*
carryforward: true
actions-shared:
paths:
- packages/actions-shared/**/*
carryforward: true
destination-actions:
paths:
- packages/destination-actions/**/*
carryforward: true
browser-destinations:
paths:
- packages/browser-destinations/**/*
carryforward: true
ajv-human-errors:
paths:
- packages/ajv-human-errors/**/*
carryforward: true
destination-subscriptions:
paths:
- packages/destination-subscriptions/**/*
carryforward: true
destinations-manifest:
paths:
- packages/destinations-manifest/**/*
carryforward: true