8000 Merge pull request #89 from msgpack/better-travis · imclab/msgpack-python@96d7d0e · GitHub
[go: up one dir, main page]

Skip to content

Commit 96d7d0e

Browse files
committed
Merge pull request msgpack#89 from msgpack/better-travis
travis: Simplify .travis.yml and add PyPy env.
2 parents 400a103 + 213f788 commit 96d7d0e

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
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"

test/test_pack.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
def check(data, use_list=False):
1313
re = unpackb(packb(data), use_list=use_list)
1414
assert re == data
15-
assert type(re) == type(data)
1615

1716
def testPack():
1817
test_data = [

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)
0