← スキル一覧に戻る

run-tests
by Clouder0
Agent Setup.
⭐ 0🍴 0📅 2025年12月2日
SKILL.md
name: run-tests description: Project-specific test execution commands. Customize for your project. allowed-tools: Bash
Run Tests Skill (Project-Specific)
CUSTOMIZE THIS FILE FOR YOUR PROJECT.
Quick Reference
# TypeScript/JavaScript (bun)
bun test
bun test path/to/test.ts
# Python (uv)
uv run pytest
uv run pytest tests/test_specific.py -v
Test Commands
TypeScript/JavaScript (Bun)
# Run all tests
bun test
# Run specific test file
bun test src/components/Button.test.ts
# Run tests matching pattern
bun test --grep "should handle"
# Run with coverage
bun test --coverage
Python (UV + pytest)
# Run all tests
uv run pytest
# Run specific test file
uv run pytest tests/test_api.py
# Run with verbose output
uv run pytest -v
# Run with coverage
uv run pytest --cov=src
Expected Output
Tests should exit with:
- Exit code 0 = All tests passed
- Exit code 1 = Tests failed
Integration with Self-Test
When implementing, follow this pattern:
1. Write code
2. Write tests for the code
3. Run: bun test (or uv run pytest)
4. If tests fail → fix code
5. If tests pass → continue
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です