.codecov.yml 538 B

123456789101112131415161718192021
  1. coverage:
  2. status:
  3. project:
  4. default:
  5. threshold: 0.1%
  6. patch: off
  7. comment: false
  8. ignore:
  9. # Exclude test helpers from coverage calculation.
  10. #
  11. # The following patterns are also consumed by a hacky sed script in tools/prune-cover.sh.
  12. - "pkg/cli/clitest"
  13. - "pkg/eval/evaltest"
  14. - "pkg/eval/vals/testutils.go"
  15. - "pkg/prog/progtest"
  16. - "pkg/store/storetest"
  17. - "pkg/testutil/must.go"
  18. # Exclude the copied rpc package.
  19. - "pkg/rpc"
  20. # The web UI is not being worked on now, also exclude it.
  21. - "pkg/web"