Skip to content

Commit

Permalink
Use Django 1.9.1 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmay committed Jan 6, 2016
1 parent 9ec9afd commit d4dd32c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ python:
env:
- DJANGO_VERSION=1.7.10 DATABASE_URL=postgres://postgres@/django_guardian
- DJANGO_VERSION=1.8.7 DATABASE_URL=postgres://postgres@/django_guardian
- DJANGO_VERSION=1.9.0 DATABASE_URL=postgres://postgres@/django_guardian
- DJANGO_VERSION=1.9.1 DATABASE_URL=postgres://postgres@/django_guardian
- DJANGO_VERSION=1.7.10 DATABASE_URL=mysql://root:@localhost/django_guardian
- DJANGO_VERSION=1.8.7 DATABASE_URL=mysql://root:@localhost/django_guardian
- DJANGO_VERSION=1.9.0 DATABASE_URL=mysql://root:@localhost/django_guardian
- DJANGO_VERSION=1.9.1 DATABASE_URL=mysql://root:@localhost/django_guardian
- DJANGO_VERSION=1.7.10 DATABASE_URL=sqlite://
- DJANGO_VERSION=1.8.7 DATABASE_URL=sqlite://
- DJANGO_VERSION=1.9.0 DATABASE_URL=sqlite://
- DJANGO_VERSION=1.9.1 DATABASE_URL=sqlite://

install:
- travis_retry pip install -q mock==1.0.1 Django==$DJANGO_VERSION coverage coveralls
Expand All @@ -38,11 +38,11 @@ matrix:
exclude:
# Drop python 3.3 and django 1.9
- python: 3.3
env: DJANGO_VERSION=1.9.0 DATABASE_URL=postgres://postgres@/django_guardian
env: DJANGO_VERSION=1.9.1 DATABASE_URL=postgres://postgres@/django_guardian
- python: 3.3
env: DJANGO_VERSION=1.9.0 DATABASE_URL=mysql://root:@localhost/django_guardian
env: DJANGO_VERSION=1.9.1 DATABASE_URL=mysql://root:@localhost/django_guardian
- python: 3.3
env: DJANGO_VERSION=1.9.0 DATABASE_URL=sqlite://
env: DJANGO_VERSION=1.9.1 DATABASE_URL=sqlite://
# Drop python 3.5 and django 1.7
- python: 3.5
env: DJANGO_VERSION=1.7.10 DATABASE_URL=postgres://postgres@/django_guardian
Expand All @@ -56,4 +56,4 @@ matrix:
- python: 3.3
env: DJANGO_VERSION=1.8.7 DATABASE_URL=postgres://postgres@/django_guardian
- python: 3.3
env: DJANGO_VERSION=1.9.0 DATABASE_URL=postgres://postgres@/django_guardian
env: DJANGO_VERSION=1.9.1 DATABASE_URL=postgres://postgres@/django_guardian
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ deps =
pyflakes
django17: django==1.7.10
django18: django==1.8.7
django19: django==1.9.0
django19: django==1.9.1

0 comments on commit d4dd32c

Please sign in to comment.