mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
31 lines
653 B
YAML
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
|