You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: clean up unnecessary coverage pragmas across codebase
Remove `# pragma: no cover` from lines that are actually covered by
tests, as detected by strict-no-cover. For lines with partial coverage
across platforms or Python versions, use the appropriate pragma:
- `# pragma: lax no cover` for platform-specific code (Windows skip
markers, sys.platform branches, OS-specific exception handlers)
- `# pragma: no branch` for branches where the exit path is never
taken (async for loops, anyio.fail_after blocks, finally clauses)
0 commit comments