From a84861a4aa73275c40ecda1d8b5e0a309aed4368 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sat, 2 May 2015 01:01:18 +0200 Subject: [PATCH] travis-ci: less build log noise Surprisingly, the integration works! But we can reduce some noise in the build log: - be explicit that we don't require sudo (silences YELLOW! notice) - override install since we don't require/use pip requirements --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4f14606..fd8dd64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ language: python + +# let's test as many versions as we can! python: - "2.6" - "2.7" @@ -6,7 +8,17 @@ python: - "3.3" - "3.4" - "nightly" + +# we don't need any python dependencies: +install: true + +# the test command: script: python ./setup.py test + +# no need for sudo access, silence notice: +sudo: false + +# but we do need a system library: addons: apt: packages: -- 2.39.2