Skip to content

Commit 2bdcf87

Browse files
author
Joachim Jablon
committed
Improve travis look by specifying the right python version
1 parent 4ca2aef commit 2bdcf87

File tree

1 file changed

+24
-10
lines changed

1 file changed

+24
-10
lines changed

.travis.yml

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
11
# Config file for automatic testing at travis-ci.org
22
language: python
3-
python:
4-
- "3.5"
5-
env:
6-
- TOX_ENV=py27-django18
7-
- TOX_ENV=py35-django18
8-
- TOX_ENV=py27-django19
9-
- TOX_ENV=py35-django19
10-
- TOX_ENV=py27-django110
11-
- TOX_ENV=py35-django110
12-
- TOX_ENV=linters
3+
4+
matrix:
5+
include:
6+
# Python version is just for the look on travis.
7+
- python: 2.7
8+
env: TOX_ENV=py27-django18
9+
10+
- python: 2.7
11+
env: TOX_ENV=py27-django19
12+
13+
- python: 2.7
14+
env: TOX_ENV=py27-django110
15+
16+
- python: 3.5
17+
env: TOX_ENV=py35-django18
18+
19+
- python: 3.5
20+
env: TOX_ENV=py35-django19
21+
22+
- python: 3.5
23+
env: TOX_ENV=py35-django110
24+
25+
- env: TOX_ENV=linters
26+
1327
install:
1428
- pip install tox
1529
script:

0 commit comments

Comments
 (0)