Travis: make build matrix more readable (by humans)

This commit is contained in:
medmunds
2015-09-25 17:50:44 -07:00
parent 3b4d1c1359
commit e06f2cf718

View File

@@ -1,46 +1,29 @@
language: python language: python
matrix: matrix:
include: include:
# Django 1.4: Python 2.6--2.7 (but we don't support 2.6) # Django 1.4: Python 2.6--2.7 (but Djrill doesn't support 2.6)
- python: "2.7" - { env: DJANGO=django==1.4, python: 2.7 }
env: DJANGO=django==1.4
# Django 1.5: Python 2.7, pypy # Django 1.5: Python 2.7, pypy
- python: "2.7" - { env: DJANGO=django==1.5, python: 2.7 }
env: DJANGO=django==1.5 - { env: DJANGO=django==1.5, python: pypy }
- python: "pypy"
env: DJANGO=django==1.5
# Django 1.6: Python 2.7--3.3, pypy # Django 1.6: Python 2.7--3.3, pypy
- python: "2.7" - { env: DJANGO=django==1.6, python: 2.7 }
env: DJANGO=django==1.6 - { env: DJANGO=django==1.6, python: 3.3 }
- python: "3.3" - { env: DJANGO=django==1.6, python: pypy }
env: DJANGO=django==1.6
- python: "pypy"
env: DJANGO=django==1.6
# Django 1.7: Python 2.7--3.4, pypy # Django 1.7: Python 2.7--3.4, pypy
- python: "2.7" - { env: DJANGO=django==1.7, python: 2.7 }
env: DJANGO=django==1.7 - { env: DJANGO=django==1.7, python: 3.3 }
- python: "3.3" - { env: DJANGO=django==1.7, python: 3.4 }
env: DJANGO=django==1.7 - { env: DJANGO=django==1.7, python: pypy }
- python: "3.4"
env: DJANGO=django==1.7
- python: "pypy"
env: DJANGO=django==1.7
# Django 1.8: "Python 2.7 or above" # Django 1.8: "Python 2.7 or above"
- python: "2.7" - { env: DJANGO=django==1.8, python: 2.7 }
env: DJANGO=django==1.8 - { env: DJANGO=django==1.8, python: 3.4 }
- python: "3.4" - { env: DJANGO=django==1.8, python: pypy }
env: DJANGO=django==1.8
- python: "pypy"
env: DJANGO=django==1.8
# Django 1.9 (prerelease): "Python 2.7, 3.4, or 3.5" # Django 1.9 (prerelease): "Python 2.7, 3.4, or 3.5"
- python: "2.7" - { env: DJANGO="--pre django", python: 2.7 }
env: DJANGO="--pre django" - { env: DJANGO="--pre django", python: 3.4 }
- python: "3.4" - { env: DJANGO="--pre django", python: 3.5 }
env: DJANGO="--pre django" - { env: DJANGO="--pre django", python: pypy }
- python: "3.5"
env: DJANGO="--pre django"
- python: "pypy"
env: DJANGO="--pre django"
install: install:
- pip install --upgrade setuptools pip - pip install --upgrade setuptools pip
- pip install -q $DJANGO - pip install -q $DJANGO