[go: up one dir, main page]

File: .codecov.yml

package info (click to toggle)
dipy 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,828 kB
  • sloc: python: 63,790; makefile: 258; pascal: 167; sh: 131; ansic: 106
file content (27 lines) | stat: -rw-r--r-- 738 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
comment:
  layout: "reach, diff, files"
  behavior: default
  require_changes: false  # if true: only post the comment if coverage changes
  require_base: no        # [yes :: must have a base report to post]
  require_head: yes       # [yes :: must have a head report to post]
  branches: null

ignore:
  - "*/benchmarks/*"
  - "setup.py"
  - "*/setup.py"
  - "*/tests/*"

coverage:
  status:
    project:
      default:
        # Drops on the order 0.01% are typical even when no change occurs
        # Having this threshold set a little higher (0.1%) than that makes it
        # a little more tolerant to fluctuations
        target: auto
        threshold: 0.1%
    patch:
      default:
        target: auto
        threshold: 0.1%