django-multiselectfield/.travis.yml
2016-09-22 09:28:31 -06:00

66 lines
1.2 KiB
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
matrix:
exclude:
- python: "2.6"
env: DJANGO=1.7
- python: "2.6"
env: DJANGO=1.8
- python: "2.6"
env: DJANGO=1.9
- python: "2.6"
env: DJANGO=1.10
- python: "3.3"
env: DJANGO=1.4
- python: "3.4"
env: DJANGO=1.4
- python: "3.5"
env: DJANGO=1.4
- python: "3.3"
env: DJANGO=1.5
- python: "3.4"
env: DJANGO=1.5
- python: "3.5"
env: DJANGO=1.5
- python: "3.4"
env: DJANGO=1.6
- python: "3.5"
env: DJANGO=1.6
- python: "3.5"
env: DJANGO=1.7
- python: "3.3"
env: DJANGO=1.9
- python: "3.3"
env: DJANGO=1.10
install:
- pip install -q Django==$DJANGO
- pip install tox coveralls
script:
- coverage erase
- PYTHONPATH=. coverage run -p example/run_tests.py
- PYTHONPATH=. coverage run -p example/run_tests.py example.settings_no_debug
after_success:
- coverage combine
- coveralls
notifications:
email:
- goinnn@gmail.com
- blag@users.noreply.github.com