forked from getsentry/sentry
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcodecov.yml
56 lines (53 loc) · 1.26 KB
/
codecov.yml
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
# Setting coverage targets per flag
coverage:
status:
project:
default: false
patch:
default: false
frontend:
# codecov will not fail status checks for master
only_pulls: true
target: 60%
flags:
- frontend
backend:
# codecov will not fail status checks for master
only_pulls: true
target: 90%
flags:
- backend
ignore:
- src/*/migrations/
- src/bitfield/
- src/sentry/debug/
- src/sentry/lint/
- src/sentry/runner/
- src/social_auth/
- static/app/routes.tsx
- tests/
component_management:
individual_components:
# Profiling team components
- component_id: "profiling_views"
name: "Profiling Views"
paths:
- "static/app/views/profiling/**"
- component_id: "profiling_components"
name: "Profiling Components"
paths:
- "src/sentry/static/sentry/app/components/profiling/**"
- component_id: "profiling_utils"
name: "Profiling Utils"
paths:
- "src/sentry/static/sentry/app/utils/profiling/**"
flags:
frontend:
paths:
- "static/app/"
carryforward: true
backend:
paths:
- "src/sentry/**/*.py"
carryforward: true
comment: false