← Back to list

run-tests
by manuelmauro
Agentic AI skills management, linting, and formatting
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: run-tests description: Run the test suite and report results license: MIT OR Apache-2.0
Run Tests
Execute the skilo test suite and analyze results.
Test Commands
# Run all tests
cargo test
# Run tests with output
cargo test -- --nocapture
# Run a specific test
cargo test test_name
# Run tests in a specific module
cargo test skill::validator
Test Organization
Tests are organized as follows:
| Location | Description |
|---|---|
src/*/tests.rs | Unit tests inline with modules |
tests/ | Integration tests |
Writing Tests
When adding new functionality:
- Add unit tests for individual functions
- Add integration tests for CLI commands
- Use
tempfilefor tests that need filesystem access - Use
assert_cmdfor testing CLI behavior
Example
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_example() {
assert!(true);
}
}
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