-
Notifications
You must be signed in to change notification settings - Fork 53
/
.codecov.yml
52 lines (46 loc) · 1.23 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
51
52
# Codecov settings
# After modifying this file, it might be worth to validate it with:
# `curl --data-binary @.codecov.yml https://codecov.io/validate`
# NOTE: Codecov has been disabled for rose - too much effort to extract coverage from functional tests
# # 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