Skip to content

Commit

Permalink
Merge pull request #337 from CTPUG/feature/django_1.11_travis_tweaks
Browse files Browse the repository at this point in the history
Feature/django 1.11 travis tweaks
  • Loading branch information
drnlm committed Jan 25, 2017
2 parents 85e7886 + 10b46ae commit 32cc488
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
Expand All @@ -12,25 +11,24 @@ env:
- DJANGO='django>=1.9.0,<1.10.0' TESTDB=postgres
- DJANGO='django>=1.10.0,<1.11.0' TESTDB=sqlite
- DJANGO='django>=1.10.0,<1.11.0' TESTDB=postgres
- DJANGO='https://github.com/django/django/archive/stable/1.11.x.tar.gz' TESTDB=sqlite
- DJANGO='https://github.com/django/django/archive/stable/1.11.x.tar.gz' TESTDB=postgres
- DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=sqlite
- DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=postgres

matrix:
exclude:
# Django no longer supports 3.3
- python: "3.3"
env: DJANGO='django>=1.9.0,<1.10.0' TESTDB=sqlite
- python: "3.3"
env: DJANGO='django>=1.9.0,<1.10.0' TESTDB=postgres
- python: "3.3"
env: DJANGO='django>=1.10.0,<1.11.0' TESTDB=sqlite
- python: "3.3"
env: DJANGO='django>=1.10.0,<1.11.0' TESTDB=postgres
- python: "3.3"
# Django 2.0 will drop python 2 support - https://www.djangoproject.com/weblog/2015/jun/25/roadmap/
- python: "2.7"
env: DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=sqlite
- python: "2.7"
env: DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=postgres

allow_failures:
- env: DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=postgres
- env: DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=sqlite
allow_failures:
- env: DJANGO='https://github.com/django/django/archive/stable/1.11.x.tar.gz' TESTDB=postgres
- env: DJANGO='https://github.com/django/django/archive/stable/1.11.x.tar.gz' TESTDB=sqlite
- env: DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=postgres
- env: DJANGO='https://github.com/django/django/archive/master.tar.gz' TESTDB=sqlite

services:
- postgresql
Expand Down

0 comments on commit 32cc488

Please sign in to comment.