summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 11835cbe7297d95423b93eacd0f0098c5f4e8359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"