codecov.yml 857 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Configuration File for CodeCov
  2. codecov:
  3. require_ci_to_pass: no
  4. notify:
  5. require_ci_to_pass: no
  6. wait_for_ci: false
  7. ci:
  8. - jenkins.milvus.io:18080
  9. coverage:
  10. precision: 2
  11. round: down
  12. range: "70...100"
  13. status:
  14. project:
  15. default:
  16. target: 77%
  17. threshold: 0% #Allow the coverage to drop by threshold%, and posting a success status.
  18. patch:
  19. default:
  20. target: 80% #target of patch diff
  21. threshold: 0%
  22. if_ci_failed: error #success, failure, error, ignore
  23. comment:
  24. layout: "reach, diff, flags, files"
  25. behavior: default
  26. require_changes: false
  27. branches: # branch names that can post comment
  28. - master
  29. ignore:
  30. - "LICENSES"
  31. - ".git"
  32. - "*.yml"
  33. - "*.md"
  34. - "docs/.*"
  35. - "**/*.pb.go"
  36. - "**/*.proto"
  37. - "internal/metastore/db/dbmodel/mocks/.*"
  38. - "**/mock_*.go"