From 1c1f65f198b67dbf3475924c7ebcf6b42aeeb240 Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Thu, 20 Aug 2015 20:33:46 -0700 Subject: [PATCH] Travis: Declare that we don't use sudo This will apparently allow us to build on Travis's new container-based build system, which is supposed to lead to faster builds. The catch is that we don't get root access, but we don't need it anyway. http://docs.travis-ci.com/user/migrating-from-legacy/ --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 2d3b52c..3ab1d72 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,3 +9,4 @@ python: install: pip install -e . before_script: pokedex setup -v script: py.test +sudo: false