-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.codecov.yml
More file actions
44 lines (38 loc) · 1.27 KB
/
.codecov.yml
File metadata and controls
44 lines (38 loc) · 1.27 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
# Codecov configuration for HDF5 Go Library
# Documentation: https://docs.codecov.com/docs/codecovyml-reference
# Validator: https://api.codecov.io/validate
coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
target: 70% # Minimum project coverage
threshold: 1% # Allow 1% drop from target
base: auto
informational: false # Fail if below target
only_pulls: false
patch:
default:
target: auto # Auto-detect reasonable target for changes
threshold: 10% # Allow 10% variance for patches
base: auto
informational: true # Don't fail PRs, just inform
only_pulls: false
ignore:
- "cmd/**" # CLI tools (not covered by tests)
- "examples/**" # Example code (not covered by tests)
- "internal/testing/**" # Test utilities (no self-tests needed)
- "testdata/**" # Test data files
- "**/*_test.go" # Test files themselves
- "tmp/**" # Temporary files
comment:
layout: "header, diff, flags, files, footer"
behavior: default
require_changes: false
require_base: false
require_head: true
# GitHub integration
github_checks:
annotations: true