test-generator
Installation
SKILL.md
測試生成技能
⚗️ 本專案規範 (CRITICAL)
所有命令一律透過 uv run 執行,包括測試、lint、type check:
uv run pytest # ⩡ 多核平行測試(預設 -n auto --timeout=60)
uv run ruff check . # Lint
uv run ruff format . # 格式化
uv run mypy src/ tests/ # 型別檢查(含 tests)
uv run pytest --cov # 多核 + 覆蓋率
💡 UV 使用 Rust 實作,比 pip 快 10-100 倍。
uv run在毫秒級確認環境後直接執行,幾乎零開銷。 ⚠️ 永遠不要直接呼叫pytest、ruff、mypy。