From 919f649674d2c485040ba666e5ab97a6e33a422c Mon Sep 17 00:00:00 2001 From: Neal Todd Date: Fri, 14 Feb 2014 12:15:34 +0000 Subject: [PATCH] Wagtail doesn't require postgres but tests currently configured to run using postgres so need to install psycopg2 dependency. --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 19fbbd9c4..cf92bdf30 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,9 @@ services: - redis-server - elasticsearch # Package installation -install: python setup.py install +install: + - python setup.py install + - pip install psycopg2 # Pre-test configuration before_script: - psql -c 'create database wagtaildemo_test;' -U postgres @@ -23,3 +25,4 @@ notifications: - wagtail-ci@torchbox.com on_success: change on_failure: always +