From d05b255cc2ce1e9c88f2e8f1308202a2ac28d8f2 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Fri, 14 Aug 2015 16:44:26 +0200 Subject: [PATCH] Add pip cache and cointaner mode to travis Pip caching is described in http://docs.travis-ci.com/user/caching/ . We willn't need redownload dependencies every time. It will work faster. Container-based infrastructure is described in http://docs.travis-ci.com/user/migrating-from-legacy/?utm_source=legacy-notice&utm_medium=banner&utm_campaign=legacy-upgrade . We can freely migrate to container-based infrastructure. It will work faster too. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index aa7d3bf..bc3b43a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ language: python +sudo: false +cache: pip python: - '2.6' - '2.7'