Test Fixer — Bulk Test Failure Resolution When to Use - 5+ failing tests in an existing test suite - Collection errors masking real test failures - Assertion mismatches between tests and evolved source code - Async test framework misconfiguration Critical: Fix Collection Errors FIRST Collection errors (ImportError, ModuleNotFoundError) cause pytest to stop collecting and skip subsequent test files. The "2 errors" you see initially may mask 50+ real failures. Workflow: 1. Run to see only collection errors 2. Fix import paths, missing dependencies, pytest.ini markers one at a time 3. Re-run to…