Add .travis.yml

This commit is contained in:
INADA Naoki 2012-12-11 02:59:45 +09:00
parent 4a20700e20
commit cb7dff3319

14
.travis.yml Normal file
View file

@ -0,0 +1,14 @@
language: python
python:
- 2.6
- 2.7
- 3.2
install:
- sudo apt-get update -qq
- sudo apt-get install -q cython
- cython --cplus msgpack/_msgpack.pyx
- pip install six --use-mirrors
- python setup.py install
script: "nosetests -w test"