-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcodecov.yml
More file actions
53 lines (52 loc) · 1.32 KB
/
codecov.yml
File metadata and controls
53 lines (52 loc) · 1.32 KB
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
# Codecov configuration for docling-java
# See: https://docs.codecov.com/docs/codecov-yaml
coverage:
range: 70..100
status:
project:
default:
target: auto
threshold: 1%
if_not_found: success
docling-core:
target: auto
threshold: 1%
paths:
- "docling-core/src/main/java/**"
if_not_found: success
docling-serve-api:
target: auto
threshold: 1%
paths:
- "docling-serve/docling-serve-api/src/main/java/**"
if_not_found: success
docling-serve-client:
target: auto
threshold: 1%
paths:
- "docling-serve/docling-serve-client/src/main/java/**"
if_not_found: success
docling-testcontainers:
target: auto
threshold: 1%
paths:
- "docling-testcontainers/src/main/java/**"
if_not_found: success
docling-version-tests:
target: auto
threshold: 1%
paths:
- "docling/testing/docling-version-tests/src/main/java/**"
if_not_found: success
comment:
layout: "header,diff,flags,tree,footer"
behavior: default
require_changes: false
ignore:
- "**/*Tests.java"
- "**/*Test.java"
- "**/test/**"
- "docs/**"
- "buildSrc/**"
- "docling-testcontainers/**"
- "docling-testing/**"