Add sudo to fix issues with system-wide Python installation on Travis

This commit is contained in:
squidfunk 2016-10-30 14:15:09 +01:00
parent a0c10d868a
commit 1bb5eb631c

View File

@ -19,7 +19,7 @@
# IN THE SOFTWARE. # IN THE SOFTWARE.
language: node_js language: node_js
sudo: false sudo: true
# Node.js versions # Node.js versions
node_js: node_js:
@ -38,7 +38,7 @@ addons:
# Install dependencies # Install dependencies
before_script: before_script:
- pip install -r requirements.txt - sudo pip install -r requirements.txt
- npm install - npm install
# Perform build and tests # Perform build and tests