test-generator

ruff Linter + Formatter uv run ruff check src/ --fix && uv run ruff format src/

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "test-generator" with this command: npx skills add u9401066/med-paper-assistant/u9401066-med-paper-assistant-test-generator

測試生成技能

靜態分析

工具 用途 命令

ruff Linter + Formatter uv run ruff check src/ --fix && uv run ruff format src/

mypy 類型檢查 uv run mypy src/ --ignore-missing-imports

bandit 安全掃描 uv run bandit -r src/ -ll

vulture 死代碼檢測 uv run vulture src/ --min-confidence 80

完整:uv run ruff check src/; uv run mypy src/ --ignore-missing-imports; uv run bandit -r src/ -ll

測試金字塔

層級 工具 目錄

Unit pytest tests/unit/

Integration pytest + httpx tests/integration/

E2E playwright tests/e2e/

Coverage pytest-cov 目標 ≥80%

單元測試必涵蓋

  • Happy Path — 正常流程

  • Edge Cases — 邊界條件

  • Error Handling — pytest.raises

  • Parametrize — @pytest.mark.parametrize

執行命令

pytest tests/unit -v # 單元 pytest tests/integration -v -m integration # 整合 pytest --cov=src --cov-report=term-missing --cov-fail-under=80 # 覆蓋率

Checklist

  • Happy path + edge cases + error handling

  • Fixtures 設定(conftest.py)

  • 覆蓋率 ≥ 80%

  • CI workflow 整合

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

draft-writing

No summary provided by upstream source.

Repository SourceNeeds Review
Research

project-management

No summary provided by upstream source.

Repository SourceNeeds Review
Research

roadmap-updater

No summary provided by upstream source.

Repository SourceNeeds Review