mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-17 06:30:26 +00:00
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.
This commit is contained in:
parent
e46804810f
commit
fa3cdf108c
1 changed files with 13 additions and 10 deletions
23
.travis.yml
23
.travis.yml
|
|
@ -1,23 +1,26 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.6"
|
||||
- "2.7"
|
||||
- "3.3"
|
||||
- "3.4"
|
||||
- "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.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
|
||||
- pip install $DJANGO
|
||||
script:
|
||||
- python setup.py test
|
||||
- python setup.py test
|
||||
|
|
|
|||
Loading…
Reference in a new issue