Skip to main content

coverage

Generate first-party Swift package coverage (llvm-cov HTML, lcov, text summary). Use when the user asks for coverage, after expanding Tests/, or before claiming test work is done.

Zur Installation springen

Quellinformationen

Repository
hoangsonww/Diffuse-Native-Apps
Letzte Quellaktivität
20. August 2026 um 04:17
Erkannte Sprache von SKILL.md
Englisch
Sterne
2
Forks
0

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
coverage
description
Generate first-party Swift package coverage (llvm-cov HTML, lcov, text summary). Use when the user asks for coverage, after expanding Tests/, or before claiming test work is done.
# Coverage Hermetic, first-party. Do **not** add Codecov, Coveralls, Code Climate, or similar. ```bash ./Scripts/coverage.sh ``` Writes gitignored `coverage/`: - `summary.txt` / `summary.md` — line coverage by file - `coverage.lcov` — for local tools - `html/index.html` — browsable report CI already runs this on the `test` job and uploads `coverage/` as an artifact. Open the HTML from the artifact; do not commit it. Ignore patterns exclude `.build` and `Tests/` so the denominator is package sources. ```bash SKIP_TEST=1 ./Scripts/coverage.sh # rebuild the report from an existing profile ```
Auf GitHub ansehen