codecov.yml 399 B

12345678910111213141516
  1. # Configuration for codecov
  2. coverage:
  3. status:
  4. project:
  5. default:
  6. # If we get < 50% coverage, codecov is gonna mark it a failure
  7. target: 50%
  8. threshold: null
  9. patch:
  10. default:
  11. # Codecov won't mark it as a failure if a patch is not covered well
  12. informational: true
  13. github_checks:
  14. # Don't mark lines that aren't covered
  15. annotations: false