django-oidc-provider/.travis.yml
Dan Collins 972071e370 Add support for Django 2.1, drop support for Django < 1.11
Django 1.11 deprecated the django.contrib.auth.views.logout
function-based view, which django-oidc-provider relied on. This
patchset instead subclasses the new LogoutView.

LogoutView was introduced in Django 1.11. logout() was deprecated in
1.11 and removed in 2.1. Accordingly, this patch adds Django 2.1 to
CI and removes 1.8, 1.9, and 1.10.

Resolves #258
2018-08-01 14:13:11 -04:00

26 lines
503 B
YAML

language: python
install:
- pip install tox coveralls
matrix:
include:
- python: 2.7
env:
- ENV=docs
- python: 2.7
env:
- ENV=py27-django111
- python: 3.4
env:
- ENV=py34-django111,py34-django20,py34-django21
- python: 3.5
env:
- ENV=py35-django111,py35-django20,py35-django21
- python: 3.6
env:
- ENV=py36-django111,py36-django20,py36-django21
script:
- tox -e $ENV
after_success:
- coveralls