.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: 100            # specify the target coverage for each commit status
  11                                 #   option: "auto" (must increase from parent commit or pull request base)
  12                                 #   option: "X%" a static target percentage to hit
  13          if_not_found: success  # if parent is not found report status as success, error, or failure
  14          if_ci_failed: error    # if ci fails report status as success, error, or failure
  15  
  16