forked from zereight/gitlab-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodecov.yml
More file actions
70 lines (61 loc) · 1.76 KB
/
codecov.yml
File metadata and controls
70 lines (61 loc) · 1.76 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
# Codecov Configuration
# Prevent codecov from reporting failures when coverage drops
# This allows coverage to be tracked without failing GitHub status checks
coverage:
# Set coverage precision
precision: 2
# Round coverage to avoid minor fluctuations
round: down
# Coverage range for color coding (informational only)
range: 50..90
# Status configuration - prevent failures
status:
# Project-level coverage status
project:
default:
# Don't fail if coverage drops
threshold: null
# Allow any coverage drop without failing
target: auto
# Only track coverage, don't enforce thresholds
informational: true
# Patch-level coverage status (for PRs)
patch:
default:
# Don't fail if new code has lower coverage
threshold: null
# Allow any coverage without failing
target: auto
# Only track coverage, don't enforce thresholds
informational: true
# Changes detection configuration
changes:
default:
# Don't fail on coverage changes
threshold: null
# Only track, don't enforce
informational: true
# Comment configuration for PRs
comment:
# Post coverage comments on PRs but don't indicate failures
layout: "reach, diff, flags, files"
behavior: default
require_changes: false
require_base: false
require_head: false
# Don't show status indicators that imply failure
show_critical_paths: false
# GitHub status checks configuration
github_checks:
# Disable status annotations that can appear as failures
annotations: false
# Ignore files/directories from coverage
ignore:
- "tests/**/*"
- "**/*.test.ts"
- "**/*.test.js"
- "dist/**/*"
- "build/**/*"
- "coverage/**/*"
- "node_modules/**/*"
- "**/*.d.ts"