123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- codecov:
- notify:
- # The minimum amount of codecov reporting checks that need to complete
- # For FE we have 5 checks and for BE we have 11
- # TODO: Remove this when we have support of after_n_builds per flag
- after_n_builds: 5
- # 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
|