diff --git a/.travis.yml b/.travis.yml index 8a60203..e10b3c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,33 @@ language: python -python: - - 2.7 - - 3.5 - - "pypy" -install: - - pip install -q Django==$DJANGO_VERSION - - python setup.py install -env: - - DJANGO_VERSION=1.7 - - DJANGO_VERSION=1.8 -script: python runtests.py sudo: false + +matrix: + include: + - python: 2.7 + env: DJANGO=django==1.7.* + - python: 2.7 + env: DJANGO=django==1.8.* + + - python: 3.2 + env: DJANGO=django==1.7.* + - python: 3.2 + env: DJANGO=django==1.8.* + + - python: 3.3 + env: DJANGO=django==1.7.* + - python: 3.3 + env: DJANGO=django==1.8.* + + - python: 3.4 + env: DJANGO=django==1.7.* + - python: 3.4 + env: DJANGO=django==1.8.* + + - python: 3.5 + env: DJANGO=django==1.8.* + +install: + - pip install $DJANGO + - python setup.py install + +script: python runtests.py