codecov.yml 437 B

1234567891011121314151617181920
  1. comment:
  2. layout: header, changes, diff, sunburst
  3. coverage:
  4. status:
  5. patch:
  6. default:
  7. target: 50%
  8. only_pulls: true
  9. # project will give us the diff in the total code coverage between a commit
  10. # and its parent
  11. project:
  12. default:
  13. target: auto
  14. threshold: "15%"
  15. changes: false
  16. ignore:
  17. - "**/internal/test"
  18. - "vendor/*"
  19. - "cli/compose/schema/bindata.go"
  20. - ".*generated.*"