mit einem Klick
run-tests
Run the test suite and report results
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Run the test suite and report results
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
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);
}
}