test-runner
Installation
SKILL.md
Test Runner
When to Use
- Validate changes with unit/integration tests or triage failing test runs.
Rules
- Use
source setTestEnv.shwhen environment variables are required. - Focus on the first actionable failure line and include package + test name.
- Prefer targeted test runs (
-run) over full-suite when iterating.
Commands
- Full suite (with test env):
source setTestEnv.sh && go test -v -cover ./... - Single package:
source setTestEnv.sh && go test -v -cover ./lib/... - Single test:
source setTestEnv.sh && go test -v -run TestHashPass ./lib/...