From 35937b38e2530e484b0fe68b358caa4c9633ed43 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Mon, 29 Aug 2016 15:46:42 -0400 Subject: [PATCH] travis: Use the generic VM to test `conda-smithy`. We don't actually care what VM we get from Travis CI or what comes with it as we install Miniconda and use its Python and assorted packages for constructing a testing environment. As a result, it would be better if we use one of the "cheap" Travis VM images to start as we don't care what comes with it. Here we propose using the `generic` image, which we have used successfully in a lot of other cases. Also it has very fast boot times. This should be helpful for iterating quickly on proposed changes. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 908fd1cc3..c9e1343fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ # The language in this case has no bearing - we are going to be making use of conda for a # python distribution for the scientific python stack. -language: python +language: generic sudo: false