com um clique
run-tests
// Run the project test suite with optional filtering by marker or file. Use when you need to verify code changes, check test status, or diagnose test failures.
// Run the project test suite with optional filtering by marker or file. Use when you need to verify code changes, check test status, or diagnose test failures.
Generate all orchestrator report types — execution summaries, agent performance, workflow analytics, health, config audit, and HTML dashboard with charts. Use after task runs or for project status overview.
Run system health checks and generate a health report. Use when checking system status, agent availability, or before deployments.
Review code changes for security vulnerabilities, authentication gaps, injection risks, and unsafe patterns. Use before merging PRs or after security-sensitive changes.
| name | run-tests |
| description | Run the project test suite with optional filtering by marker or file. Use when you need to verify code changes, check test status, or diagnose test failures. |
Run the test suite for the AI Coding Tools Orchestrator.
python -m pytest tests/ --override-ini="addopts=" -q --timeout=30 -m "not integration and not slow"
If the user specifies a marker (unit, integration, slow, security, agentic_team):
python -m pytest tests/ --override-ini="addopts=" -q --timeout=30 -m "<marker>"
If the user specifies a test file:
python -m pytest tests/test_<name>.py --override-ini="addopts=" -q --timeout=30