AntiPattern
Async Boundary Blocking Mistakes
async-boundary-blocking-misuse
Event-loop code blocks or mis-shapes async boundaries when sync waits (e.g., time.sleep / waiting for subprocess completion) or async mocks return coroutines instead of awaitable/context-manager objects, causing stalled scheduling or incorrect test/runtime behavior.