jenkins-bot has submitted this change and it was merged. Change subject: [FIX] Secure python-eggs directory ......................................................................
[FIX] Secure python-eggs directory The python-eggs directory created with Travis was insecure which generated warnings and were treated as errors by the script tests. Change-Id: I181cb9ae372a5ba65ee6f89c8e91e29dfe6d6bc9 --- M .travis.yml 1 file changed, 2 insertions(+), 0 deletions(-) Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified diff --git a/.travis.yml b/.travis.yml index 9525f49..c9643d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,8 @@ - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install ordereddict unittest2==0.6.0; fi - pip install six - mkdir ~/.pywikibot + - mkdir ~/.python-eggs + - chmod 700 ~/.python-eggs - touch ~/.pywikibot/user-config.py - echo "import os" >> ~/.pywikibot/user-config.py -- To view, visit https://gerrit.wikimedia.org/r/171275 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I181cb9ae372a5ba65ee6f89c8e91e29dfe6d6bc9 Gerrit-PatchSet: 1 Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Owner: XZise <[email protected]> Gerrit-Reviewer: John Vandenberg <[email protected]> Gerrit-Reviewer: Ladsgroup <[email protected]> Gerrit-Reviewer: Merlijn van Deen <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ Pywikibot-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/pywikibot-commits
