From 6fc2ffe93bbe704b0e8bc9de3bd331515c5fa83d Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Fri, 27 Jan 2017 11:38:22 +0100 Subject: [PATCH] Fix travis builds --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 77d7863..0e6ca8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,13 @@ addons: env: - PLUGIN=livesync before_install: + - pip install -U pip setuptools # Flask-PluginEngine is not on PyPI yet, so we need to install it from 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 -r requirements.txt + - grep -v indico-fonts requirements.txt | pip install -r /dev/stdin - python setup.py develop install: - cd "${TRAVIS_BUILD_DIR}/${PLUGIN}"