On Fri, Apr 18, 2014 at 3:36 PM, Saket Choudhary <saketkc@gmail.com> wrote:
Thanks John,
That really helped:
...
| /usr/local/lib/python2.7/dist-packages/setuptools-2.2-py2.7.egg/pkg_resources.py:991: UserWarning: /home/travis/.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).
Fixed here: https://travis-ci.org/saketkc/galaxy_tools/jobs/23282261#L1402 with:
before_install: - mkdir "$HOME/.python-eggs" - chmod 700 "$HOME/.python-eggs"
The test is failing, but that I expected it to anyway ;)
Thanks everyone! Especially John and Peter!
Saket
Ah - that was hard to diagnose, perhaps there used to be a more visible warning because I already had that egg chmod trick in my TravsCI setup? Well done for solving that - and thank you John for the verbose setting, I think that will be useful in future too. Peter