← Back to list

run-tests
by mvillmow
Training framework written in Mojo
⭐ 11🍴 4📅 Jan 24, 2026
SKILL.md
name: run-tests description: "Execute test suites and report results. Use when validating code functionality." mcp_fallback: none category: testing tier: 1 user-invocable: false
Run Tests
Execute test suites to verify code functionality and identify regressions or failures.
When to Use
- Pre-commit validation
- Running tests after changes
- Verifying test suite passes
- Generating test reports
Quick Reference
# Run all tests with Mojo
pixi run mojo test -I . tests/
# Run specific test file
mojo test -I . tests/shared/core/test_example.mojo
# Run with verbose output
mojo test -I . tests/ -v
# Python pytest
pytest tests/
pytest tests/ -v --tb=short
Workflow
- Set up test environment: Ensure all dependencies installed
- Select tests: Choose which test suite or specific tests to run
- Execute tests: Run test runner with appropriate options
- Review results: Check pass/fail status and output
- Debug failures: Investigate and fix failing tests
Output Format
Test results:
- Total tests run
- Passed/failed/skipped counts
- Failure details (assertion message, stack trace)
- Execution time per test
- Test coverage metrics (if applicable)
References
- See
generate-testsskill for creating tests - See
calculate-coverageskill for coverage analysis - See CLAUDE.md > TDD in Key Development Principles
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon