forked from talmolab/sleap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
30 lines (30 loc) · 823 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
27
28
29
30
coverage:
ignore:
- "tests"
status:
project: # Measures overall project coverage.
default: false
gui:
target: auto
threshold: 0.5% # Some leeway with GUI code.
paths:
- "sleap/gui/"
non-gui:
target: auto
threshold: 0.05% # Less leeway with backend code.
paths:
- "sleap/"
- "!sleap/gui/"
patch: # Only measures lines adjusted in the pull request.
default: false
gui:
target: auto
paths:
- "sleap/gui/"
informational: true # GUI patch coverage for stats only.
non-gui:
target: 100% # All backend code should be tested...
threshold: 20% # ... but some tests are infeasable.
paths:
- "sleap/"
- "!sleap/gui/"