Run all automated tests (unit + integration + UAT) with pytest (< 60s)
/plugin marketplace add akaszubski/autonomous-dev/plugin install autonomous-dev@autonomous-devpytest tests/ -v --tb=short
Execute complete automated test suite with pytest
/test
Time: < 60 seconds (varies by project size) Tool: pytest Scope: All automated tests (unit + integration + UAT)
Runs pytest against all test directories:
tests/unit/ - Unit teststests/integration/ - Integration teststests/uat/ - User acceptance testspytest tests/ --cov=src --cov-report=term-missing -v
Running all automated tests...
tests/unit/test_auth.py ✅✅✅✅✅ (5/5)
tests/integration/test_api.py ✅✅✅ (3/3)
tests/uat/test_workflows.py ✅✅ (2/2)
============================================
10/10 tests passed
Coverage: 87%
Time: 12.3s
============================================
/test-unit - Unit tests only (< 1s)/test-integration - Integration tests only (< 10s)/test-uat - UAT tests only (< 60s)/test-uat-genai - GenAI UX validation (2-5min)/test-architecture - GenAI architectural validation (2-5min)/test-complete - Complete pre-release validation (all + GenAI)Use this for quick validation that all automated tests pass.