test-runner

Installation
SKILL.md

Test Runner

Execute and manage Rust tests for the self-learning memory project.

Commands

# Unit tests (fast, <30s)
cargo nextest run --lib

# Integration tests
cargo nextest run --test '*'

# Full suite
cargo nextest run --all
cargo test --doc  # doctests (nextest unsupported)

# Quality gates (coverage threshold 90%)
./scripts/quality-gates.sh
Related skills

More from d-o-hub/rust-self-learning-memory

Installs
33
GitHub Stars
7
First Seen
Feb 21, 2026