-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
65 lines (59 loc) · 1.32 KB
/
codecov.yml
File metadata and controls
65 lines (59 loc) · 1.32 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
62
63
64
65
# Codecov configuration — https://docs.codecov.io/docs/codecov-yaml
codecov:
require_ci_to_pass: true
coverage:
precision: 2
round: down
range: "60...90"
status:
project:
default:
target: auto
threshold: 2% # Allow up to 2% drop without failing
if_ci_failed: error
patch:
default:
target: 80% # New code should have >= 80% coverage
threshold: 5%
comment:
layout: "header, diff, flags, components"
behavior: default
require_changes: true
require_base: false
require_head: true
ignore:
- "tests/**"
- "docs/**"
- "infra/**"
- "k8s/**"
- "tools/**"
- "**/Migrations/**"
- "**/obj/**"
- "**/bin/**"
flags:
unittests:
paths:
- src/
carryforward: true
component_management:
individual_components:
- component_id: foundation
name: FoundationLayer
paths:
- src/FoundationLayer/**
- component_id: reasoning
name: ReasoningLayer
paths:
- src/ReasoningLayer/**
- component_id: metacognitive
name: MetacognitiveLayer
paths:
- src/MetacognitiveLayer/**
- component_id: agency
name: AgencyLayer
paths:
- src/AgencyLayer/**
- component_id: business
name: BusinessApplications
paths:
- src/BusinessApplications/**