-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcodecov.yml
More file actions
63 lines (48 loc) · 2.21 KB
/
Copy pathcodecov.yml
File metadata and controls
63 lines (48 loc) · 2.21 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
54
55
56
57
58
59
60
61
62
63
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"
# Entry points (minimal logic, hard to unit test)
- "Sources/ASCCommand/ASC.swift"
- "Sources/ASCPlugin/PluginLoader.swift"
# Auth commands — read live environment credentials, not unit-testable
- "Sources/ASCCommand/Commands/Auth/**/*"
# Version commands — print constants, no logic to test
- "Sources/ASCCommand/Commands/Version/**/*"
# Web server runtime — Hummingbird server, certs, dylib loading
- "Sources/ASCCommand/Commands/Web/**/*"
- "Sources/Infrastructure/Web/**/*"
# Iris — real browser cookie extraction and HTTP calls, not unit-testable
- "Sources/Infrastructure/Iris/BrowserIrisCookieProvider.swift"
- "Sources/Infrastructure/Iris/IrisClient.swift"
# Iris auth — drives Apple SRP login + idmsa.apple.com HTTP, third-party-interactive
- "Sources/Infrastructure/Iris/Auth/**"
# Iris private app-bundle API — Apple iris HTTP adapter, third-party-interactive
- "Sources/Infrastructure/Iris/AppBundles/**"
# WebKit HTML renderer — WKWebView + AppKit GUI snapshot, not unit-testable
- "Sources/Infrastructure/ScreenshotPlans/WebKitHTMLRenderer.swift"
# Shell runner — spawns real subprocesses, not unit-testable
- "Sources/Infrastructure/Skills/ShellRunner.swift"
# Plugin marketplace — wraps PluginLoader (filesystem) + URLSession download + unzip
- "Sources/Infrastructure/Plugins/PluginMarketRepository.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"