Skip to content

Commit

Permalink
Merge pull request #72 from nikolas/patch-1
Browse files Browse the repository at this point in the history
test on latest django versions in travis
  • Loading branch information
mtford90 committed Jun 29, 2015
2 parents deafdca + dc04d4c commit 7f20104
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION=1.6.8
- DJANGO_VERSION=1.7.7
- DJANGO_VERSION=1.8
- DJANGO="Django>=1.6.0,<1.7.0"
- DJANGO="Django>=1.7.0,<1.8.0"
- DJANGO="Django>=1.8.0,<1.9.0"

install:
- pip install -q Django==$DJANGO_VERSION
- pip install -q $DJANGO
- pip install -r requirements.txt

script:
- cd project
- python manage.py syncdb --noinput
- python manage.py migrate --noinput || true # Only for 1.7/1.8
- python manage.py test --noinput
- cd -
- cd -

0 comments on commit 7f20104

Please sign in to comment.