-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcodecov.yml
More file actions
40 lines (32 loc) · 1.29 KB
/
codecov.yml
File metadata and controls
40 lines (32 loc) · 1.29 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
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"
# Iris — real browser cookie extraction and HTTP calls, not unit-testable
- "Sources/Infrastructure/Iris/BrowserIrisCookieProvider.swift"
- "Sources/Infrastructure/Iris/IrisClient.swift"
# Simulator stream — HTTP server, subprocess management, AXe shell integration
- "Sources/Infrastructure/Simulators/DeviceStreamServer.swift"
- "Sources/Infrastructure/Simulators/AXeStreamManager.swift"
- "Sources/Infrastructure/Simulators/AXeInteractionRepository.swift"
- "Sources/ASCCommand/Commands/Simulators/SimulatorsStream.swift"