From 9b7b73b5e80dd137b5947dafa057a530a32289d6 Mon Sep 17 00:00:00 2001 From: Ken Cochrane Date: Thu, 1 Jan 2015 10:48:06 -0500 Subject: [PATCH] add travis.yml --- .travis.yml | 17 +++++++++++++++++ README.md | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7b41462 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python + +python: + - 2.7 + - 3.3 + - 3.4 + +env: + - DJANGO=Django==1.4.16 + - DJANGO=Django==1.6.8 + - DJANGO=Django==1.7.1 + +install: + - pip install -q $DJANGO + +script: + - PYTHONPATH=$PYTHONPATH:$PWD django-admin.py test defender --settings=defender.test_settings diff --git a/README.md b/README.md index a6ec422..663d8b8 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,12 @@ they want for a backend, so it is configurable. Version 0.1 will be very limited in features, it will only do a few things, but the goal is to do those things very well, and have full unit tests with docs. +Build status +------------ + +[![Build Status](https://travis-ci.org/kencochrane/django-defender.svg)](https://travis-ci.org/kencochrane/django-defender) + + Goals for 0.1 =============