forked from tddworks/asc-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
30 lines (24 loc) · 776 Bytes
/
codecov.yml
File metadata and controls
30 lines (24 loc) · 776 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
coverage:
status:
project:
default:
target: auto
threshold: 2%
patch:
default:
target: 70%
comment:
layout: "reach,diff,flags,tree"
behavior: default
require_changes: false
ignore:
- "Tests/**/*"
# TUI — terminal UI framework, not unit-testable
- "Sources/ASCCommand/Commands/TUI/**/*"
# Composition roots — wire real SDK clients, not unit-testable
- "Sources/ASCCommand/ClientProvider.swift"
- "Sources/Infrastructure/Client/ClientFactory.swift"
# Auth command — reads live environment credentials, not unit-testable
- "Sources/ASCCommand/Commands/Auth/AuthCommand.swift"
# Version command — prints a constant, no logic to test
- "Sources/ASCCommand/Commands/Version/VersionCommand.swift"