summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: ad54ee0a05aca0f91f84273a1be042f00a51053b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
sudo: false
cache:
    directories:
        - wheelhouse

language: python
python:
    - 2.7

env:
    - TOXENV=py26-c,py27-c
    - TOXENV=py32-c,py33-c,py34-c
    - TOXENV=py26-pure,py27-pure
    - TOXENV=py32-pure,py33-pure,py34-pure
    - TOXENV=pypy-pure,pypy3-pure

install:
    - pip install wheel tox
    - ls -la wheelhouse
    - if [ ! -f wheelhouse/Cython-0.22-cp27-none-linux_x86_64.whl ] ; then pip wheel cython==0.22 ; fi
    - pip install wheelhouse/Cython-0.22-cp27-none-linux_x86_64.whl
    - cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx

script: tox