forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodecov.yml
45 lines (43 loc) · 1.08 KB
/
codecov.yml
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
codecov:
require_ci_to_pass: yes
github_checks:
annotations: true #Annotations for Pull Request
coverage:
precision: 2
round: down
range: "0...30"
status:
patch: true #GitHub Checks and annotations for the patch status are enabled by default for all GitHub users.
project:
# These flags should match with those in the Github Action ci.yml
front-end-integration-tests:
flags:
- integrationtests
front-end-e2e-tests:
flags:
- e2etests
backend:
flags:
- unittests
flags:
# Filter the folders to be measured by each flag
# front-end-integration-tests:
# paths:
# - ui/cypress/integration/integration
# carryforward: true
# front-end-e2e-tests:
# paths:
# - ui/cypress/integration/e2e
# carryforward: true
backend:
paths:
# Accepts only glob patterns, not regex
- "*/cmd/**"
- "*/handlers/**"
- "*/helpers/**"
- "*/internal/**"
- "*/mesheryctl/**"
- "*/meshes/**"
- "*/models/**"
- "*/router/**"
carryforward: true