forked from abhinavsingh/proxy.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
27 lines (27 loc) · 798 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
---
codecov:
require_ci_to_pass: yes # yamllint disable-line rule:truthy
notify:
wait_for_ci: yes # yamllint disable-line rule:truthy
coverage:
status:
project:
default: false # disable the default status that measures entire project
# examples: # declare a new status context "examples"
tests: # declare a new status context "tests"
# target: 100% # we always want 100% coverage here
paths:
- "tests/" # only include coverage in "tests/" folder
threshold: 1%
lib: # declare a new status context "lib"
paths:
- "!tests/" # remove all files in "tests/"
threshold: 1%
patch:
default:
target: auto
base: auto
threshold: 1%
comment:
require_changes: true
...