-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcodecov.yml
More file actions
49 lines (45 loc) · 956 Bytes
/
codecov.yml
File metadata and controls
49 lines (45 loc) · 956 Bytes
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
coverage:
status:
project:
default:
# Don't fail CI if coverage drops
target: auto
threshold: 100%
informational: true
patch:
default:
# Don't fail CI for patch coverage
target: auto
threshold: 100%
informational: true
# Configure comments on PRs
comment:
layout: "reach,diff,flags,tree,reach"
behavior: default
require_changes: false
require_base: false
require_head: true
# Configure which files to ignore
ignore:
- "tests/**/*"
- "**/__pycache__/**/*"
- "**/.*"
- "docs/**/*"
- "examples/**/*"
- "scripts/**/*"
- "setup.py"
- "conftest.py"
# Configure GitHub status checks
github_checks:
annotations: true
# Flag management
flag_management:
default_rules:
carryforward: true
statuses:
- type: project
target: auto
informational: true
- type: patch
target: auto
informational: true