Skip to content

Commit e7a8a5a

Browse files
committed
Merge pull request #127 from xmlrunner/build-matrix
travis: try to split build matrix.
2 parents 606db78 + eec4571 commit e7a8a5a

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

.travis.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,25 @@ sudo: false
22

33
language: python
44

5-
python:
6-
- "2.7"
7-
- "pypy"
8-
- "3.3"
9-
- "3.4"
5+
matrix:
6+
include:
7+
- python: "2.7"
8+
env: TOXENV=py27
9+
- python: "2.7"
10+
env: TOXENV=py27-djangolts
11+
- python: "2.7"
12+
env: TOXENV=py27-djangocurr
13+
- python: "2.7"
14+
env: TOXENV=quality
15+
- python: "3.3"
16+
env: TOXENV=py33
17+
- python: "3.4"
18+
env: TOXENV=py34
19+
- python: "pypy"
20+
env: TOXENV=pypy
21+
1022
install:
11-
- pip install tox-travis codecov coveralls
23+
- pip install tox codecov coveralls
1224
script:
1325
- tox
1426
after_success:

0 commit comments

Comments
 (0)