.codecov.yml 545 B

12345678910111213141516171819
  1. codecov:
  2. notify:
  3. wait_for_ci: true
  4. # our project is large, so 6 builds are typically uploaded. this waits till 5/6
  5. # See https://docs.codecov.com/docs/notifications#section-preventing-notifications-until-after-n-builds
  6. after_n_builds: 5
  7. coverage:
  8. status:
  9. patch:
  10. default:
  11. threshold: 100% # allow patch coverage to be lower than project coverage by any amount
  12. project:
  13. default:
  14. threshold: 5% # allow project coverage to drop at most 5%
  15. comment: false
  16. github_checks:
  17. annotations: false