From 8a4d43c86de954ace1cc642a5e303c092548864a Mon Sep 17 00:00:00 2001 From: enkore Date: Fri, 17 Oct 2014 12:56:46 +0200 Subject: [PATCH] Make CI builds less noisy --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 556110a..f514196 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,10 @@ language: python python: - "3.3" install: - - "sudo apt-get install python3-sphinx" - - "pip install -r .travis-requirements.txt" + - "sudo apt-get install -qq python3-sphinx" + - "pip3 install -r .travis-requirements.txt" script: - "pep8 --ignore E501 i3pystatus tests" - "PYTHONPATH=. py.test" # run unit tests - - "python setup.py install" # test install + - "python setup.py -q install" # test install - "sphinx-build -W docs html" # test building docs