summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: ddd52549e884a45dffb18363471a76fe35feeac7 (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
25
26
27
28
sudo: false
cache:
    directories:
        - wheelhouse

language: python
python:
    - 2.7

branches:
    only:
        - master

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