Skip to content

Commit

Permalink
Merge pull request #673 from thedrow/patch-1
Browse files Browse the repository at this point in the history
Improved the build process to use docker based works and include Django 1.7 in the tests.
  • Loading branch information
tim-schilling committed Feb 27, 2015
2 parents 2cbd2e6 + 1f54abb commit 5a63ca6
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.4.10
- DJANGO_VERSION=1.5.5
- DJANGO_VERSION=1.6.1
- DJANGO="Django>=1.4.0,<1.5.0"
- DJANGO="Django>=1.5.0,<1.6.0"
- DJANGO="Django>=1.6.0,<1.7.0"
- DJANGO="Django>=1.7.0,<1.8.0"
matrix:
exclude:
- python: "3.2"
env: DJANGO_VERSION=1.4.10
env: DJANGO="Django>=1.4.0,<1.5.0"
- python: "3.3"
env: DJANGO_VERSION=1.4.10
env: DJANGO="Django>=1.4.0,<1.5.0"
- python: "3.4"
env: DJANGO_VERSION=1.4.10
env: DJANGO="Django>=1.4.0,<1.5.0"

- python: "2.6"
env: DJANGO="Django>=1.7.0,<1.8.0"
install:
- pip install -e .
- pip install Django==$DJANGO_VERSION django-discover-runner sqlparse
- travis_retry pip install $DJANGO django-discover-runner sqlparse
script: make test

0 comments on commit 5a63ca6

Please sign in to comment.