Update travis config

This commit is contained in:
INADA Naoki 2018-10-03 21:09:45 +09:00 committed by Inada Naoki
parent f6f9597249
commit 6c8e539eec

View file

@ -21,7 +21,7 @@ matrix:
install:
- pip install -U pip
- pip install cython
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
- make cython
- docker pull $DOCKER_IMAGE
script:
- docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
@ -34,19 +34,19 @@ matrix:
install:
- pip install -e .
script:
- py.test -v test
- pytest -v test
install:
- pip install -U pip
- pip install cython
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
- make cython
- pip install -e .
script:
- python -c 'import sys; print(hex(sys.maxsize))'
- python -c 'from msgpack import _packer, _unpacker'
- py.test -v test
- MSGPACK_PUREPYTHON=x py.test -v test
- python -c 'from msgpack import _msgpack'
- pytest -v test
- MSGPACK_PUREPYTHON=x pytest -v test
# vim: sw=2 ts=2