wagtail/.travis.yml

39 wiersze
915 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
2014-02-14 12:43:03 +00:00
- pip install psycopg2 pyelasticsearch elasticutils
- pip install coveralls
# Pre-test configuration
before_script:
- psql -c 'create database wagtaildemo;' -U postgres
# Run the tests
script:
2014-02-23 17:23:28 +00:00
coverage run runtests.py
after_success:
coveralls
# Who to notify about build results
notifications:
email:
recipients:
- wagtail-ci@torchbox.com
on_success: change
on_failure: always
2014-02-14 13:26:17 +00:00
webhooks:
urls:
2014-02-14 17:35:57 +00:00
- secure: "dQZBPlCC2OQE2L7EqOMkKsQxCJm05BhFrfmKmJ0AnKqxiEyZDKd2JiQaMg8X7XtIdJ87dlnBZH5h3erPSMgI3mIfNCWKKs/f6idgWIXPpklzU95KmPOrCoOyT3lkDTEOXCYXhgvOExp8qLHc4qjEWbSoIfPwqYyPlGry3Z76UBM="
2014-02-14 13:26:17 +00:00
on_success: change
on_failure: always
# bump Travis: 1