在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用run-tests
星标1
分支0
更新时间2026年4月1日 11:00
Run the test suite and report results
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run the test suite and report results
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Prepare a new version release with changelog and version bumps
Add a new lint rule to the validator
Review code changes for quality, correctness, and style
Guide for writing conventional commits with gitmoji
Create GitHub pull requests with clear titles and structured descriptions. Use when the user asks to open, create, or submit a pull request or PR.
Identify and fix Clippy warnings in Rust code
| name | run-tests |
| description | Run the test suite and report results |
| license | MIT OR Apache-2.0 |
Execute the skilo test suite and analyze results.
# 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
Tests are organized as follows:
| Location | Description |
|---|---|
src/*/tests.rs | Unit tests inline with modules |
tests/ | Integration tests |
When adding new functionality:
tempfile for tests that need filesystem accessassert_cmd for testing CLI behavior#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_example() {
assert!(true);
}
}