.codecov.yml 711 B

12345678910111213141516171819202122232425262728
  1. coverage:
  2. status:
  3. project:
  4. default:
  5. threshold: 0.1%
  6. patch: off
  7. comment: false
  8. # The following patterns are also consumed by a hacky sed script in
  9. # tools/prune-cover.sh, which does not support globs.
  10. ignore:
  11. # Exclude test helpers.
  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 commands for manual testing.
  20. - "pkg/cli/examples"
  21. - "pkg/md/mdrun"
  22. # Exclude files generated by stringer.
  23. - "pkg/getopt/zstring.go"
  24. - "pkg/md/zstring.go"
  25. - "pkg/parse/zstring.go"
  26. # Exclude the copied diff and rpc packages.
  27. - "pkg/diff"
  28. - "pkg/rpc"