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 ResourceWarning by properly closing file handles in DummyProcess
The DummyProcess class wasn't closing file handles in its __aexit__ method,
causing ResourceWarning errors in CI tests on Windows. This commit adds
proper cleanup to close both the async stream wrappers and underlying raw
file handles when the process context manager exits.
This prevents file descriptor leaks and eliminates the ResourceWarning
errors seen in pytest output on Windows CI.
0 commit comments