-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Test failure in runtest.py SerializationTest.testPassingArgumentsByValue. #829
Comments
I can reproduce this on Ubuntu 16 with Anaconda Python 2.7 by running the following.
|
The problem can be reproduced more easily (without Ray) as follows. from collections import namedtuple
import cloudpickle
Point = namedtuple("Point", ["x", "y"])
s = cloudpickle.dumps(Point)
cloudpickle.loads(s) This gives the error
This is a cloudpickle regression being tracked in cloudpipe/cloudpickle#111. |
#834 pins cloudpickle to 0.3.0 in the Travis tests, which should fix the test failures. |
Closing for now, since the test failure was fixed by #834, though people with the latest cloudpickle will still run into this problem. |
I just saw this test failure, which caused
runtest.py
to hang.Cloudpickle just pushed a new release
0.4.0
, so it's probably related to that.The full log is at https://s3.amazonaws.com/archive.travis-ci.org/jobs/262938813/log.txt?X-Amz-Expires=30&X-Amz-Date=20170810T055744Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJRYRXRSVGNKPKO5A/20170810/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=d8d5b253085265e40f0f253ad2a74cb5642433975100730fad6001e523f77181
The text was updated successfully, but these errors were encountered: