Skip to content

Commit a5368f6

Browse files
committed
travis: Simplify .travis.yml and add PyPy env.
1 parent 400a103 commit a5368f6

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.travis.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,8 @@ language: python
22
python:
33
- 2.7
44

5-
env:
6-
- PIP_USE_MIRRORS=true
7-
85
install:
9-
- sudo apt-get update -qq
10-
- sudo apt-get install -q python3.3-dev
11-
- pip install --use-mirrors tox cython
12-
- cython --cplus msgpack/_packer.pyx
13-
- cython --cplus msgpack/_unpacker.pyx
6+
- pip install tox cython
7+
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
148

159
script: "tox && MSGPACK_PUREPYTHON=x tox"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26,py27,py32,py33
2+
envlist = py26,py27,py32,py33,pypy
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)