mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
Update travis config
This commit is contained in:
parent
f6f9597249
commit
6c8e539eec
1 changed files with 6 additions and 6 deletions
12
.travis.yml
12
.travis.yml
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue