From 8b9cf718c0c9cd893a0195ba8484b99daca5e9d3 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Sat, 6 Sep 2014 15:11:52 -0400 Subject: [PATCH] Added Travis CI config. --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ba821ed --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python + +python: + - "2.7" + +env: + - DJANGO=1.7 + +install: + - pip install . --use-mirrors + - pip install -r sample_project/requirements.txt --use-mirrors + +script: + - python ./sample_project/manage.py test