From 4c440ada4ccc023ce466bca5e0889e4ec8830306 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Fri, 14 Nov 2014 10:10:56 +0100 Subject: [PATCH] Enable Travis --- livesync/.travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 livesync/.travis.yml diff --git a/livesync/.travis.yml b/livesync/.travis.yml new file mode 100644 index 0000000..1899e2e --- /dev/null +++ b/livesync/.travis.yml @@ -0,0 +1,25 @@ +language: python +python: + - 2.7 +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 + # 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 + - python setup.py develop +install: + - cd $TRAVIS_BUILD_DIR + - python setup.py develop +script: + - py.test +notifications: + email: false + irc: + channels: + - 'chat.freenode.net#indico' + use_notice: true + skip_join: true