forked from metomi/rose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codecov.yml
50 lines (45 loc) · 1.05 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Codecov settings
# After modifying this file, it might be worth to validate it with:
# `curl --data-binary @.codecov.yml https://codecov.io/validate`
# which branch to monitor and whether wait for ci success
codecov:
branch: master
notify:
require_ci_to_pass: yes
# define the colour bar limits here
coverage:
precision: 2
round: down
range: "75...100"
# diff type
status:
project:
default:
# commits below this threshold will be marked as failed
target: '84%'
# how much we allow the coverage to drop
threshold: '1%'
patch:
default:
# basic
target: '84%'
threshold: '1%'
base: auto
# advanced
branches: null
if_no_uploads: error
if_not_found: success
if_ci_failed: error
only_pulls: false
flags: null
paths: null
changes: no
# files to ignore
ignore:
- "demo/**/*.py"
- "etc/**/*.py"
- "sphinx/**/*.py"
- "t/**/*.py"
- ".travis/**/*.py"
# turn off comments to pull requests
comment: off