-
Notifications
You must be signed in to change notification settings - Fork 1
/
codecov.yml
82 lines (78 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
codecov:
token: a1816d82-dc38-4cde-addd-c2883f9df596
require_ci_to_pass: yes
coverage:
precision: 2
round: down
range: "30...70"
status:
project:
default: false
api:
target: 50%
threshold: 10%
paths:
- "Services/TicketStore.Api"
web:
target: 15%
threshold: 5%
paths:
- "Services/TicketStore.Web"
data:
target: 15%
threshold: 10%
paths:
- "Services/TicketStore.Data"
client:
target: 30%
threshold: 10%
paths:
- "Services/TicketStore.Web/Client"
patch:
default:
# basic
target: auto
threshold: 10%
base: auto
# advanced
branches:
- master
if_ci_failed: failure #success, failure, error, ignore
only_pulls: true
flags:
- "unit"
paths:
- "Services/TicketStore.Api"
- "Services/TicketStore.Web"
- "Services/TicketStore.Data"
- "Services/TicketStore.Web/Client"
ignore:
- ".ci" # ignore folders and all its contents
- ".circleci" # ignore folders and all its contents
- ".github" # ignore folders and all its contents
- ".semaphore" # ignore folders and all its contents
- ".vscode" # ignore folders and all its contents
- "Deploy" # ignore folders and all its contents
- "Docs" # ignore folders and all its contents
- "Scripts" # ignore folders and all its contents
- ".gitignore" # ignore folders and all its contents
- ".azure-pipelines.yml" # ignore folders and all its contents
- "Makefile" # ignore folders and all its contents
- "README.md" # ignore folders and all its contents
- "Services/FakeYandexStorage" # wildcards accepted
- "Services/Postgres" # wildcards accepted
- "Services/Proxy" # wildcards accepted
- "**/*.json" # glob accepted
- "**/*.csproj" # glob accepted
- "**/Dockerfile*" # glob accepted
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
comment:
layout: "reach,diff,flags,tree"
behavior: default
require_changes: no