From cbe6c5ec2f40e642957a1836e260169cd06b5e25 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Fri, 14 Nov 2014 14:19:37 +0100 Subject: [PATCH] Use non-quiet pip install in travis It takes quite long and with quiet output you don't see any progress --- livesync/.travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/livesync/.travis.yml b/livesync/.travis.yml index 1899e2e..4c3cbca 100644 --- a/livesync/.travis.yml +++ b/livesync/.travis.yml @@ -5,11 +5,11 @@ addons: postgresql: 9.2 before_install: # Flask-PluginEngine is not on PyPI yet, so we need to install it from git - - pip install -q git+https://github.com/indico/flask-pluginengine.git + - pip install git+https://github.com/indico/flask-pluginengine.git # We can't use pip install indico from Git directly because of cds-indico-extras :( - git clone https://github.com/indico/indico.git /tmp/indico - cd /tmp/indico - - pip install -q -r requirements.txt + - pip install -r requirements.txt - python setup.py develop install: - cd $TRAVIS_BUILD_DIR