From 22e1f7568490b43a0e2307e527591740b396940d Mon Sep 17 00:00:00 2001 From: Neal Todd Date: Fri, 14 Feb 2014 12:03:29 +0000 Subject: [PATCH] Initial Travis CI configuration to test the CI setup itself. --- .travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..a23d4b4da9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +# 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 +# Pre-test configuration +before_script: + - psql -c 'create database wagtaildemo_test;' -U postgres +# Run the tests +script: python runtest.py +# Who to notify about build results +notifications: + email: + recipients: + - wagtail-ci@torchbox.com + on_success: change + on_failure: always