-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: macos target hangs during pytest #39
Comments
presumably related to this log:
I couldn't naively reproduce it locally. |
It appears to be coming from grpc, but is not considered a grpc bug per se. It generally falls under "don't use os.fork() on macOS". |
We could disable the mac safeguard with Recent Python versions don't use # work around pickle issue on macOS
if sys.platform == 'darwin':
multiprocessing = multiprocessing.get_context('fork') |
|
The best way to resolve this, though it needs significant test refactoring: # TODO: there is no reason to run the server as a separate process...
# just use serve_async(). |
https://github.com/python-trio/purerpc/actions/runs/4158772667/jobs/7194217372
The text was updated successfully, but these errors were encountered: