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 Python 3.14 compatibility: Set multiprocessing start method to 'fork'
Python 3.14 changed the default multiprocessing start method from 'fork'
to 'forkserver' on Linux, which breaks SIGCHLD signal delivery in tests.
This causes pselect tests to hang indefinitely.
Changes:
- Add Python 3.14 detection in conftest.py
- Force multiprocessing to use 'fork' method for Python 3.14+
- Add defensive check for __test__ attribute before deletion
Fixes test timeouts on Python 3.14.0rc2.
All tests now pass in ~8 seconds (previously timed out at 300s+).
0 commit comments