Skip to content

Commit 049d14d

Browse files
committed
Refactor Travis builds
1 parent 113169e commit 049d14d

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

.travis.yml

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
1-
sudo: false
21
language: python
3-
matrix:
4-
include:
5-
- python: 2.7
6-
env: TOXENV=py27
7-
- python: 3.3
8-
env: TOXENV=py33
9-
- python: 3.4
10-
env: TOXENV=py34
11-
- python: pypy
12-
env: TOXENV=pypy
2+
sudo: false
3+
python:
4+
- "2.7"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
# pypy2.7-5.8.0 is broken in Travis
9+
- "3.6"
10+
- "pypy-5.6.0"
11+
- "pypy3.5-5.8.0"
12+
branches:
13+
only:
14+
- master
1315
install:
14-
- pip install tox
16+
- python -V
17+
- python setup.py build_ext --inplace
18+
- pip install nose
1519
script:
16-
- tox
17-
20+
- nosetests -v
21+
notifications:
22+
email:
23+
on_success: never
24+
on_failure: change

0 commit comments

Comments
 (0)