Other files ignored by Codecov
docs/source/conf.py
has changed.
Files | Coverage |
---|---|
birl | 95% |
Project Totals (10 files) | 95% |
TRAVIS_PYTHON_VERSION=3.8 TRAVIS_OS_NAME=linux
TRAVIS_PYTHON_VERSION=3.6 TRAVIS_OS_NAME=linux
TRAVIS_PYTHON_VERSION=2.7 TRAVIS_OS_NAME=linux
TRAVIS_PYTHON_VERSION=3.7 TRAVIS_OS_NAME=linux
TRAVIS_OS_NAME=osx
TRAVIS_OS_NAME=windows
TRAVIS_PYTHON_VERSION=2.7 TRAVIS_OS_NAME=linux
TRAVIS_PYTHON_VERSION=3.8 TRAVIS_OS_NAME=linux
TRAVIS_PYTHON_VERSION=3.7 TRAVIS_OS_NAME=linux
TRAVIS_OS_NAME=osx
TRAVIS_PYTHON_VERSION=3.6 TRAVIS_OS_NAME=linux
TRAVIS_OS_NAME=windows
TRAVIS_PYTHON_VERSION=3.7 TRAVIS_OS_NAME=linux
TRAVIS_PYTHON_VERSION=2.7 TRAVIS_OS_NAME=linux
TRAVIS_OS_NAME=windows
TRAVIS_OS_NAME=osx
TRAVIS_PYTHON_VERSION=3.6 TRAVIS_OS_NAME=linux
TRAVIS_PYTHON_VERSION=3.8 TRAVIS_OS_NAME=linux
1 |
# see https://docs.codecov.io/docs/codecov-yaml
|
2 |
# Validation check:
|
3 |
# $ curl --data-binary @.codecov.yml https://codecov.io/validate
|
4 |
|
5 |
#codecov:
|
6 |
# notify:
|
7 |
# require_ci_to_pass: yes
|
8 |
|
9 |
coverage: |
10 |
precision: 0 # 2 = xx.xx%, 0 = xx% |
11 |
round: nearest # how coverage is rounded: down/up/nearest |
12 |
range: 40...100 # custom range of coverage colors from red -> yellow -> green |
13 |
status: |
14 |
# https://codecov.readme.io/v1.0/docs/commit-status
|
15 |
project: |
16 |
default: |
17 |
against: auto |
18 |
target: 90% # specify the target coverage for each commit status |
19 |
threshold: 20% # allow this little decrease on project |
20 |
# https://github.com/codecov/support/wiki/Filtering-Branches
|
21 |
# branches: master
|
22 |
if_ci_failed: error |
23 |
# https://github.com/codecov/support/wiki/Patch-Status
|
24 |
patch: |
25 |
default: |
26 |
against: auto |
27 |
target: 40% # specify the target "X%" coverage to hit |
28 |
# threshold: 50% # allow this much decrease on patch
|
29 |
changes: false |
30 |
|
31 |
parsers: |
32 |
gcov: |
33 |
branch_detection: |
34 |
conditional: true |
35 |
loop: true |
36 |
macro: false |
37 |
method: false |
38 |
javascript: |
39 |
enable_partials: false |
40 |
|
41 |
comment: |
42 |
layout: header, diff |
43 |
require_changes: false |
44 |
behavior: default # update if exists else create new |
45 |
# branches: *
|