Wagtail doesn't require postgres but tests currently configured to run using postgres so need to install psycopg2 dependency.

pull/46/head
Neal Todd 2014-02-14 12:15:34 +00:00
rodzic 2016dd8875
commit 919f649674
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -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