-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcodecov.yml
More file actions
35 lines (33 loc) · 828 Bytes
/
codecov.yml
File metadata and controls
35 lines (33 loc) · 828 Bytes
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
coverage:
status:
project:
default:
# Only track domain code coverage
target: 60%
threshold: 2%
paths:
- "Sources/InAppKit/Core/**"
- "Sources/InAppKit/Configuration/**"
patch:
default:
target: 50%
paths:
- "Sources/InAppKit/Core/**"
- "Sources/InAppKit/Configuration/**"
comment:
layout: "reach,diff,flags,tree"
behavior: default
require_changes: false
ignore:
# UI code (SwiftUI views are hard to unit test)
- "Sources/InAppKit/UI/**"
# SwiftUI previews
- "**/*Preview*.swift"
# Test helpers
- "**/TestHelpers/**/*"
# Logger (infrastructure)
- "**/Logger.swift"
# Extensions (utility code)
- "Sources/InAppKit/Extensions/**"
# Modifiers (UI-related)
- "Sources/InAppKit/Modifiers/**"