msgpack-python/.travis.yml
INADA Naoki 63e23d37f9 travis: Use docker to test 32bit environment (#189)
* travis: testing matrix.include feature to use docker
* Add test script for 32bit
* Fix OverflowError in 32bit Environment
2016-05-05 02:07:46 +09:00

39 lines
808 B
YAML

sudo: false
language: python
python: 3.5
cache:
directories:
- $HOME/.cache/pip
branches:
only:
- master
env:
- TOXENV=py27-c,py33-c,py34-c,py35-c
- TOXENV=py27-pure,py33-pure,py34-pure,py35-pure
- TOXENV=pypy-pure,pypy3-pure
matrix:
include:
- sudo: required
services:
- docker
env:
- DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
install:
- pip install -U pip
- pip install cython
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
- docker pull $DOCKER_IMAGE
script:
- docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
install:
- pip install -U pip
- pip install tox cython
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
script: tox
# vim: sw=2 ts=2