.codecov.yml 483 B

1234567891011121314151617181920
  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/cli/histutil/test_db.go"
  14. - "pkg/eval/evaltest"
  15. - "pkg/eval/vals/tester.go"
  16. - "pkg/prog/progtest"
  17. - "pkg/store/storetest"
  18. - "pkg/must"
  19. # Exclude the copied rpc package.
  20. - "pkg/rpc"