forked from GrafeoDB/grafeo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
71 lines (65 loc) · 1.47 KB
/
Copy pathcodecov.yml
File metadata and controls
71 lines (65 loc) · 1.47 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
66
67
68
69
70
71
# Codecov configuration
# https://docs.codecov.com/docs/codecov-yaml
coverage:
precision: 2
round: down
range: "60...90"
status:
project:
default:
target: auto
threshold: 2%
informational: true
patch:
default:
target: 80%
threshold: 5%
informational: true
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
comment:
layout: "reach,diff,flags,files"
behavior: default
require_changes: true
require_base: false
require_head: true
ignore:
- "**/tests/**"
- "**/benches/**"
- "crates/bindings/python/**"
- "crates/bindings/node/**"
- "crates/bindings/wasm/**"
- "crates/bindings/go/**"
- "**/build.rs"
- "scripts/**"
- "docs/**"
- "examples/**"
# Per-crate component tracking
component_management:
default_rules:
statuses:
- type: project
target: auto
informational: true
individual_components:
- component_id: grafeo-common
name: Common (types, allocators, hashing)
paths:
- crates/common/src/**
- component_id: grafeo-core
name: Core (storage, indexes, execution)
paths:
- crates/core/src/**
- component_id: grafeo-adapters
name: Adapters (parsers, algorithms, plugins)
paths:
- crates/adapters/src/**
- component_id: grafeo-engine
name: Engine (database, sessions, transactions)
paths:
- crates/engine/src/**