From a0af3b108defd450b89c8a477a2d3ea090a14f16 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 13 Oct 2016 20:54:46 +0200 Subject: [PATCH] Try not requiring sudo --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f526fd30b..5b3755c2c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: python -sudo: required +sudo: false dist: trusty group: edge @@ -19,8 +19,6 @@ install: - "./travis.sh" script: - - echo $VIA - - echo $TRAVIS_PULL_REQUEST - "pip install pytest" - if [[ "${VIA}" == "compile" ]]; then SPACY_DATA=models/en python -m pytest spacy; fi - if [[ "${TRAVIS_PULL_REQUEST}" == "false" && "${VIA}" == "pip" ]]; then python -m pytest spacy; fi