Pytest Code Review Quick Reference | Issue Type | Reference | |------------|-----------| | async def test , AsyncMock, await patterns | references/async-testing.md | | conftest.py, factory fixtures, scope, cleanup | references/fixtures.md | | @pytest.mark.parametrize, DRY patterns | references/parametrize.md | | AsyncMock tracking, patch patterns, when to mock | references/mocking.md | Review gates Work in order. Do not assert pytest-specific problems until each applicable gate passes. 1. Scoped files — Pass when: You list every and any you will cite; no findings for files outside that list.…