Newer
Older
dub_jkp / .codecov.yml
@Sebastian Wilzbach Sebastian Wilzbach on 7 Jul 2018 960 bytes Force CodeCov to be informational only
  1. # Documentation: https://docs.codecov.io/docs/codecov-yaml
  2. # Validate with: `curl --data-binary @.codecov.yml https://codecov.io/validate`
  3.  
  4. codecov:
  5. notify:
  6. # We don't want to wait for the CodeCov report
  7. # See https://github.com/codecov/support/issues/312
  8. require_ci_to_pass: false
  9. after_n_builds: 1 # send notifications after the first upload
  10. wait_for_ci: false
  11.  
  12. bot: dlang-bot
  13.  
  14. # At Travis, the PR is merged into `master` before the testsuite is run.
  15. # This allows CodeCov to adjust the resulting coverage diff, s.t. it matches
  16. # with the GitHub diff.
  17. # https://github.com/codecov/support/issues/363
  18. # https://docs.codecov.io/v4.3.6/docs/comparing-commits
  19. allow_coverage_offsets: true
  20.  
  21. coverage:
  22. precision: 3
  23. round: down
  24. range: "80...100"
  25.  
  26. # Learn more at https://docs.codecov.io/docs/commit-status
  27. status:
  28. project: off
  29. changes: off
  30. patch:
  31. default:
  32. informational: true
  33.  
  34. comment: false