django-analytical/.travis.yml
2017-10-22 14:28:25 +02:00

31 lines
653 B
YAML

language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
- DJANGO=1.11
matrix:
exclude:
# Python/Django combinations that aren't officially supported
- { python: 3.5, env: DJANGO=1.7 }
- { python: 3.6, env: DJANGO=1.7 }
- { python: 3.6, env: DJANGO=1.8 }
- { python: 3.3, env: DJANGO=1.9 }
- { python: 3.6, env: DJANGO=1.9 }
- { python: 3.3, env: DJANGO=1.10 }
- { python: 3.6, env: DJANGO=1.10 }
- { python: 3.3, env: DJANGO=1.11 }
include:
- { python: 2.7, env: TOXENV=flake8 }
install:
- pip install tox-travis
script:
- tox