-
Notifications
You must be signed in to change notification settings - Fork 14
/
codecov.yml
36 lines (33 loc) · 1.26 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
comment:
layout: "header, diff, flags, components" # show component info in the PR comment
# coverage:
# status:
# project:
# default: false # disable the default status that measures entire project
# tests: # declare a new status context "tests"
# target: 100% # we always want 100% coverage here
# paths: "tests/" # only include coverage in "tests/" folder
# code: # declare a new status context "app"
# paths: "!tests/" # remove all files in "tests/" default:
# target: auto
# threshold: 1%
# patch:
# default:
# target: auto
# threshold: 1%
component_management:
default_rules: # default rules that will be inherited by all components
statuses:
- type: project # in this case every component that doesn't have a status defined will have a project type one
target: auto
informational: true
# individual_components:
# - component_id: tests # this is an identifier that should not be changed
# name: tests # this is a display name, and can be changed freely
# paths:
# - tests/**
# statuses:
# - type: project
# target: 100%
# informational: true
# - type: patch