.codecov.yml raw

   1  coverage:
   2    range: 80..100
   3    round: down
   4    precision: 2
   5  
   6    status:
   7      project: # measuring the overall project coverage
   8        default: # context, you can create multiple ones with custom titles
   9          enabled: yes # must be yes|true to enable this status
  10          target:
  11            100 # specify the target coverage for each commit status
  12            #   option: "auto" (must increase from parent commit or pull request base)
  13            #   option: "X%" a static target percentage to hit
  14          if_not_found: success # if parent is not found report status as success, error, or failure
  15          if_ci_failed: error # if ci fails report status as success, error, or failure
  16  
  17  # Also update COVER_IGNORE_PKGS in the Makefile.
  18  ignore:
  19    - /internal/gen-atomicint/
  20    - /internal/gen-valuewrapper/
  21