From 1bb5eb631c7a7fa36ce36515a78478577ceca0c3 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 30 Oct 2016 14:15:09 +0100 Subject: [PATCH] Add sudo to fix issues with system-wide Python installation on Travis --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index dd8cb438a..62110e081 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ # IN THE SOFTWARE. language: node_js -sudo: false +sudo: true # Node.js versions node_js: @@ -38,7 +38,7 @@ addons: # Install dependencies before_script: - - pip install -r requirements.txt + - sudo pip install -r requirements.txt - npm install # Perform build and tests