test-fixing
Tests & QualitéRun tests and systematically fix all failing tests using smart error grouping. Use when user asks to fix failing tests, mentions test failures, runs test suite and failures occur, or requests to make tests pass.
Documentation
Test Fixing
Systematically identify and fix all failing tests using smart grouping strategies.
When to Use
Systematic Approach
1. Initial Test Run
Run make test to identify all failing tests.
Analyze output for:
2. Smart Error Grouping
Group similar failures by:
Prioritize groups by:
3. Systematic Fixing Process
For each group (starting with highest impact):
git diff```bash
uv run pytest tests/path/to/test_file.py -v
uv run pytest -k "pattern" -v
```
4. Fix Order Strategy
Infrastructure first:
Then API changes:
Finally, logic issues:
5. Final Verification
After all groups fixed:
make testBest Practices
git diff to understand recent changesExample Workflow
User: "The tests are failing after my refactor"
make test → 15 failures identifiedCompétences similaires
Explorez d'autres agents de la catégorie Tests & Qualité
python-testing-patterns
Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.
performance-testing-review-multi-agent-review
"Use when working with performance testing review multi agent review"
go-playwright
Expert capability for robust, stealthy, and efficient browser automation using Playwright Go.