Merge pull request #38 from msgpack/travis

Use tox on Travis.
This commit is contained in:
INADA Naoki 2012-12-11 06:00:08 -08:00
commit 647af23373

View file

@ -1,16 +1,15 @@
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- PIP_USE_MIRRORS=true
install:
- sudo apt-get update -qq
- sudo apt-get install -q cython
- sudo apt-get install -q python3.3-dev
- pip install --use-mirrors tox cython
- cython --cplus msgpack/_packer.pyx
- cython --cplus msgpack/_unpacker.pyx
- pip install six --use-mirrors
- python setup.py install
script: "nosetests -w test"
script: "tox"