.codecov.yml 563 B

1234567891011121314151617181920212223
  1. codecov:
  2. notify:
  3. require_ci_to_pass: yes
  4. # wait for unit and integration test builds.
  5. after_n_builds: 2
  6. strict_yaml_branch: main # only use the latest copy on main branch
  7. coverage:
  8. precision: 2
  9. round: down
  10. range: "80...100"
  11. status:
  12. project:
  13. default:
  14. enabled: yes
  15. target: 85% # This needs to be updated to 90 or higher.
  16. patch:
  17. default:
  18. enabled: yes
  19. target: 95%
  20. ignore:
  21. - "*/**/third_party/**/*" # Ignore all 'third_party' directories and files within those directories recursively.