wagtail/.travis.yml

29 wiersze
565 B
YAML
Czysty Zwykły widok Historia

# Python releases to test
language: python
python:
- 2.7
# Django releases
env:
- DJANGO_VERSION=Django==1.6.1
# Services
services:
- redis-server
- elasticsearch
# Package installation
install:
- python setup.py install
- pip install psycopg2 pyelasticsearch
# Pre-test configuration
before_script:
- psql -c 'create database wagtaildemo;' -U postgres
# Run the tests
2014-02-14 12:08:42 +00:00
script: python runtests.py
# Who to notify about build results
notifications:
email:
recipients:
- wagtail-ci@torchbox.com
on_success: change
on_failure: always