test-reporting

仓库创建 2026年1月12日最近提交 2 个月前SkillHot 收录 22 天前
▸ 精选理由

方便查看测试覆盖与失败原因,适合验证集成行为与回归分析。

▸ 风险提示

会执行本地测试套件,可能有副作用或访问本地代码与资源。

这个 Skill 做什么

运行集成测试并生成包含每个测试输入到结果分析的详细 HTML 报告。

运行集成测试并生成一份包含每个测试输入到结果分析的详细 HTML 报告,能直观查看每条测试为什么通过或失败。适合想把测试结果交付给同事、逐条复盘或定位问题时使用。可以按用户指定范围跑单测或全部,并输出可视化报告便于共享。

开发编程集成测试报告生成HTML 报告通用
1.1w
Stars
5.7k
Forks
18
仓库内 Skill
+143
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/aden-hive/hive/main/.claude/skills/test-reporting/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/aden-hive/hive/main/.claude/skills/test-reporting/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Integration Test Reporting Skill

Run the Level 2 dummy agent integration test suite and produce a detailed HTML report with per-test input → outcome analysis.

## Trigger

User wants to run integration tests and see results:
- `/test-reporting`
- `/test-reporting test_component_queen_live.py`
- `/test-reporting --all`

## SOP: Running Tests

### Step 1: Select Scope

If the user provides a specific test file or pattern, use it. Otherwise run the full suite.

```bash
# Full suite
cd core && echo "1" | uv run python tests/dummy_agents/run_all.py --interactive 2>&1

# Specific file (requires manual provider setup)
cd core && uv run python -c "
import sys
sys.path.insert(0, '.')
from tests.du
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有