Browse Source

[fix] travis: Permission denied: '/home/travis/.cache/pip/...'

Change owner https://docs.travis-ci.com/user/caching/#caches-and-read-permissions
and remove old log in the *before_caching* phase:

  https://docs.travis-ci.com/user/caching/#before_cache-phase

About pip cache see: https://docs.travis-ci.com/user/caching/#pip-cache

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Markus Heiser 5 years ago
parent
commit
0a951d0e55
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .travis.yml

+ 3 - 1
.travis.yml

@@ -5,7 +5,9 @@ language: python
 cache:
   - directories:
     - $HOME/.cache/pip
-
+before_cache:
+    - sudo chown -R travis:travis $HOME/.cache/pip
+    - rm -f $HOME/.cache/pip/log/debug.log
 addons:
   firefox: "latest"