I found my runs always failing with this warning:
/usr/lib/python2.7/dist-packages/pkg_resources.py:1049: UserWarning: /home/USER/.python-eggs is writable by group/others and vulnerable to attack when used with get_resource_filename. Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable).
warnings.warn(msg, UserWarning)
I'm not sure why a warning would kill the run it and I haven't found the call in the script, but after modifying the folder ($ chmod g-wx,o-wx ~/.python-eggs), it completes satisfactorily.
Perhaps this could be modified to warn the user rather than terminate the process, as I can't imagine it is process breaking.
I found my runs always failing with this warning:
I'm not sure why a warning would kill the run it and I haven't found the call in the script, but after modifying the folder (
$ chmod g-wx,o-wx ~/.python-eggs), it completes satisfactorily.Perhaps this could be modified to warn the user rather than terminate the process, as I can't imagine it is process breaking.