在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用run-tests
星标0
分支0
更新时间2026年4月7日 00:31
Run the test suite with coverage reporting
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run the test suite with coverage reporting
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | run-tests |
| description | Run the test suite with coverage reporting |
| argument-hint | [test-path-or-marker] |
| allowed-tools | Bash, Read, Grep, Glob |
| user-invocable | true |
Run the Tricorder test suite and report results.
If arguments are provided, use them as the test target:
$ARGUMENTS (e.g., tests/unit/test_sensor_drivers.py)-m $ARGUMENTS (e.g., -m integration)-k $ARGUMENTS (e.g., -k bme680)Run tests:
PYTHONPATH=src python -m pytest ${ARGUMENTS:-tests/} --cov=src --cov-fail-under=85 --cov-report=term-missing -v
Parse the output and report:
If tests fail, read the failing test and corresponding source file. Suggest the likely cause and a fix approach.
If coverage dropped below 85%, identify which modules lost coverage and suggest what tests to add.