forked from promptfoo/promptfoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
72 lines (67 loc) · 2.09 KB
/
Copy pathcodecov.yml
File metadata and controls
72 lines (67 loc) · 2.09 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
72
# Codecov configuration for promptfoo
# https://docs.codecov.com/docs/codecov-yaml
coverage:
status:
project:
default:
# Backend (`src/`) and frontend (`src/app/src/`) coverage are gated
# in-repo by the coverage ratchet (`npm run test:coverage:ratchet`, run
# in CI as the "Check Backend/Frontend Coverage Ratchets" steps), not by
# Codecov. (The `site` flag has no ratchet, so it is informational-only
# — no in-repo gate.) Keep this status informational so Codecov
# measurement noise — carryforward flags, sharded/partial uploads —
# can't fail PRs that don't change source (e.g. a dependency bump
# reporting a spurious -0.01%). codecov/project is not a required check.
target: auto
threshold: 0%
informational: true
patch:
default:
# Require new code in PRs to have reasonable coverage
target: 50%
threshold: 0%
informational: false
comment:
layout: 'header, diff, flags, components'
behavior: default
require_changes: false
# Ignore generated files and test files in coverage reports
ignore:
- 'dist/**/*'
- 'coverage/**/*'
- 'node_modules/**/*'
- '**/*.test.ts'
- '**/*.test.tsx'
- '**/*.d.ts'
- 'src/app/**/*' # Frontend has separate coverage
- 'examples/**/*'
- 'drizzle/**/*'
- 'scripts/**/*'
# Component flags for separate coverage tracking
flag_management:
default_rules:
carryforward: true
statuses:
# Per-flag project status is informational. The backend and frontend
# flags are gated in-repo by the coverage ratchet, so a blocking Codecov
# status would be redundant; the site flag has no ratchet, so we accept it
# as informational-only rather than block PRs on Codecov measurement noise.
- type: project
target: auto
threshold: 0%
informational: true
- type: patch
target: 50%
flags:
backend:
paths:
- src/
carryforward: true
frontend:
paths:
- src/app/src/
carryforward: true
site:
paths:
- site/src/
carryforward: true