django-analytical/.travis.yml
Peter Bittner fa3cdf108c Also test with Django 1.8 (Travis-CI)
Plus white-space changes to match typically used YAML syntax (indentation of lists).

This commit may close issue #54 if all goes well.
2015-04-20 22:36:59 +02:00

26 lines
533 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO="Django>=1.4,<1.5"
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.6,<1.7"
- DJANGO="Django>=1.7,<1.8"
- DJANGO="Django>=1.8,<1.9"
matrix:
exclude:
- python: "2.6"
env: DJANGO="Django>=1.7,<1.8"
- python: "2.6"
env: DJANGO="Django>=1.8,<1.9"
- python: "3.3"
env: DJANGO="Django>=1.4,<1.5"
- python: "3.4"
env: DJANGO="Django>=1.4,<1.5"
install:
- pip install $DJANGO
script:
- python setup.py test