123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- # 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
- informational: false # Fail the check
- target: 60%
- flags:
- - frontend
- backend:
- # codecov will not fail status checks for master
- only_pulls: true
- informational: false # Fail the check
- 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
- # FE uploads 4 coverage reports. This property ensures codecov waits
- # for all reports to be uploaded before creating a GitHub status check.
- # NOTE: If you change this, make sure to change `comment.after_n_builds` below as well.
- after_n_builds: 4
- backend:
- paths:
- - "src/sentry/**/*.py"
- carryforward: true
- # Do not send any status checks until n coverage reports are uploaded.
- # NOTE: If you change this, make sure to change `comment.after_n_builds` below as well.
- after_n_builds: 18
- # Read more here: https://docs.codecov.com/docs/pull-request-comments
- comment:
- # This is the addition of carry forward builds and fresh builds, thus, it's the addition
- # of the FE and BE builds
- after_n_builds: 22
- layout: "diff, files"
- # Update, if comment exists. Otherwise post new.
- behavior: default
- # Comments will only post when coverage changes. Furthermore, if a comment
- # already exists, and a newer commit results in no coverage change for the
- # entire pull, the comment will be deleted.
- require_changes: true
- require_base: true # must have a base report to post
- require_head: true # must have a head report to post
|