-
Notifications
You must be signed in to change notification settings - Fork 10
/
codecov.yml
26 lines (26 loc) · 928 Bytes
/
codecov.yml
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
ignore:
- package/PartSeg/changelog.py
- package/PartSeg/version.py
- package/PartSegCore/sphinx/auto_parameters.py
coverage:
status:
project:
default: false
PartSeg:
target: auto
threshold: 0.5% # coverage can drop by up to 0.5% while still posting success
paths: ['package/PartSeg/.*']
PartSegCore:
target: auto
threshold: 0.5% # coverage can drop by up to 0.5% while still posting success
paths: [ 'package/PartSegCore/.*' ]
PartSegImage:
target: auto
threshold: 0.5% # coverage can drop by up to 0.5% while still posting success
paths: [ 'package/PartSegImage/.*' ]
Tests:
target: auto
threshold: 1% # coverage can drop by up to 0.5% while still posting success
paths: [ 'package/tests/.*' ]
comment:
require_changes: true # if true: only post the PR comment if coverage changes