Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

test-coverage测试覆盖率

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

15,030

周安装

682

GitHub Stars

4

下载量

5,483
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:test-coverage(测试覆盖率)
来源仓库:https://github.com/eyadsibai/ltk
仓库路径:skills/test-coverage
安装命令:
npx skills add https://github.com/eyadsibai/ltk --skill 'Test Coverage'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eyadsibai/ltk --skill 'Test Coverage'

简介

test-coverage 分析代码覆盖率并识别测试缺口。

  • 支持行、分支与函数覆盖率的量化报告生成。
  • 帮助制定测试补充计划以提高关键路径保障水平。
  • 运行前需确认测试框架配置与数据整理脚本正确性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Test Coverage Analysis

Comprehensive test coverage analysis skill for measuring coverage, identifying gaps, and improving test quality.

Core Capabilities

Coverage Measurement

Calculate and report code coverage metrics:

Line Coverage:

  • Percentage of lines executed by tests
  • Target: > 80%
  • Critical code paths: > 95%

Branch Coverage:

  • Percentage of branches (if/else) tested
  • Target: > 70%
  • Catches edge cases line coverage misses

Function Coverage:

  • Percentage of functions called by tests
  • Target: > 90%
  • Quick indicator of test breadth

Running coverage:

# Python with pytest-cov
pytest --cov=src --cov-report=html --cov-report=term-missing

# Python with coverage.py
coverage run -m pytest
coverage report -m
coverage html

# JavaScript with Jest
jest --coverage

Gap Identification

Find untested code areas:

Completely Untested Files:

  • Files with 0% coverage
  • Often forgotten modules
  • Priority: New features, critical paths

Partially Tested Functions:

  • Functions with some but not all branches tested
  • Missing edge cases
  • Error handling paths

Untested Code Patterns:

# Show lines not covered
coverage report --show-missing

# List files below threshold
coverage report --fail-under=80

# JSON report for parsing
coverage json -o coverage.json

Test Quality Assessment

Evaluate test effectiveness beyond coverage:

Test-to-Code Ratio:

  • Lines of test / Lines of source
  • Target: 1:1 to 2:1
  • Low ratio may indicate insufficient testing

Assertion Density:

  • Assertions per test function
  • Target: > 1 per test
  • Single assertion per concept (ideally)

Test Independence:

  • Tests should not depend on each other
  • No shared mutable state
  • Proper setup/teardown

Test Clarity:

  • Descriptive test names
  • Clear arrange/act/assert structure
  • Documented test purpose

Coverage Analysis Workflow

Full Coverage Analysis

  1. Run test suite: Execute all tests with coverage
  2. Generate reports: Create HTML and terminal reports
  3. Identify gaps: Find untested files and lines
  4. Prioritize: Rank gaps by risk and importance
  5. Recommend tests: Suggest specific tests to add

Quick Coverage Check

For rapid assessment:

  1. Run coverage on changed files only
  2. Compare to baseline coverage
  3. Flag regressions
  4. Report delta coverage

Coverage Report Format

Summary Report

Coverage Summary
================
Total Coverage: 78.5%
Target: 80.0%
Status: BELOW TARGET

By Component:
┌────────────────┬──────────┬────────┬─────────┐
│ Component      │ Lines    │ Missed │ Coverage│
├────────────────┼──────────┼────────┼─────────┤
│ api/           │ 450      │ 45     │ 90%     │
│ services/      │ 820      │ 180    │ 78%     │
│ repositories/  │ 320      │ 96     │ 70%     │
│ utils/         │ 150      │ 60     │ 60%     │
└────────────────┴──────────┴────────┴─────────┘

Gap Analysis

Critical Gaps (Priority: High)
==============================
1. services/payment.py (45% coverage)
   - process_payment(): Lines 45-78 untested
   - refund_transaction(): Completely untested
   - Error handling: 0% coverage

2. repositories/user_repo.py (62% coverage)
   - delete_user(): Untested
   - bulk_update(): Partial coverage

Test Recommendations

Recommended Tests
=================

1. test_payment_processing.py
   - test_successful_payment()
   - test_payment_insufficient_funds()
   - test_payment_network_error()
   - test_refund_full_amount()
   - test_refund_partial_amount()

2. test_user_repository.py
   - test_delete_user_success()
   - test_delete_user_not_found()
   - test_bulk_update_all_fields()
   - test_bulk_update_partial()

Test Types and Strategies

Unit Tests

Coverage focus:

  • Individual functions/methods
  • Edge cases and boundaries
  • Error conditions

Best practices:

  • Fast execution (< 100ms each)
  • No external dependencies
  • Use mocks/stubs for isolation

Integration Tests

Coverage focus:

  • Component interactions
  • Database operations
  • API endpoints

Best practices:

  • Test real integrations
  • Use test databases/containers
  • Clean up after tests

End-to-End Tests

Coverage focus:

  • User workflows
  • Critical paths
  • System behavior

Best practices:

  • Selective coverage (key flows)
  • Realistic test data
  • Stable test environment

Coverage Configuration

Python (pytest-cov)

# pytest.ini or pyproject.toml
[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=term-missing --cov-fail-under=80"

[tool.coverage.run]
branch = true
source = ["src"]
omit = ["tests/*", "*/__pycache__/*"]

[tool.coverage.report]
exclude_lines = [
    "pragma: no cover",
    "if TYPE_CHECKING:",
    "raise NotImplementedError",
]

JavaScript (Jest)

{
  "jest": {
    "collectCoverage": true,
    "coverageThreshold": {
      "global": {
        "branches": 70,
        "functions": 80,
        "lines": 80,
        "statements": 80
      }
    },
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/tests/"
    ]
  }
}

Prioritization Framework

Critical (Must Test)

  • Payment/financial operations
  • Authentication/authorization
  • Data validation
  • Security-sensitive code
  • Core business logic

Important (Should Test)

  • User-facing features
  • Data transformations
  • External integrations
  • Error handling paths

Lower Priority

  • Utility functions
  • Configuration loading
  • Logging code
  • Debug/development code

Common Coverage Issues

False Sense of Security

Problem: High coverage but weak tests Solution: Review assertion quality, test mutations

Coverage Gaming

Problem: Tests that touch code without verifying behavior Solution: Require meaningful assertions, code review

Untestable Code

Problem: Code that's difficult to test Solution: Refactor for testability, dependency injection

Integration

Coordinate with other skills:

  • code-quality skill: For test code quality
  • refactoring skill: For improving testability
  • security-scanning skill: For security test coverage

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.29%
按下载量换算1,990

Claude

27.39%
按下载量换算1,502

Cursor

18.4%
按下载量换算1,009

Gemini CLI

9.07%
按下载量换算497

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/eyadsibai/ltk --skill 'Test Coverage' 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills