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.

Aller à l'installation

Informations de source

Dépôt
hoangsonww/Diffuse-Native-Apps
Dernière activité de la source
20 août 2026 à 04:17
Langue détectée de SKILL.md
anglais
Étoiles
2
Forks
0

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
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 ```
Voir sur GitHub