django-oidc-provider/.travis.yml
Graham Ullrich b8d1d63c28 Improve tox.ini envlist layout, simplified commands.
Remove tests/app/settings.py in favor of settings in setup.py.
Change MANIFEST.in to include README.md (which exists) instead of README.rst (which does not exist).
Update .travis.yml to use tox instead of `python django_admin.py`, include Django v1.10 in the mix.
2016-08-11 11:13:23 -06:00

21 lines
310 B
YAML

language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
matrix:
exclude:
- python: "3.5"
env: DJANGO=1.7
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
after_success:
- coveralls