Updated Travis config to test against multiple versions of Python and Django.

master
Brandon Taylor 2014-09-12 08:14:30 -04:00
parent ba552549c2
commit a5363c94cb
1 changed files with 13 additions and 2 deletions

View File

@ -1,13 +1,24 @@
language: python language: python
python: python:
- "2.6"
- "2.7" - "2.7"
- "3.2"
- "3.3"
- "3.4"
env: env:
- DJANGO=1.6.6 - DJANGO_VERSION=1.5.10
- DJANGO_VERSION=1.6.7
- DJANGO_VERSION=1.7
branches:
only:
- master
install: install:
- pip install -r sample_project/requirements.txt - pip install -q south
- pip install -q django==$DJANGO_VERSION
script: script:
- cd sample_project - cd sample_project