trax/.claude/commands/quick-test.md

549 B

Quick Test

Run quick validation of recent changes.

Steps:

1. Run affected tests

# Find recently modified files
git diff --name-only HEAD~1 | grep "\.py$"

# Run tests for modified modules
uv run pytest -xvs [affected test files]

2. Format check

uv run black --check src/ tests/

3. Lint check

uv run ruff check src/ tests/

4. Type check modified files

uv run mypy [modified files]

5. File size check

./scripts/validate_loc.sh

Running quick validation now...