summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2018-10-03 21:09:45 +0900
committerInada Naoki <songofacandy@gmail.com>2018-11-08 20:31:06 +0900
commit6c8e539eec5bfbda752337c34fb701980f061859 (patch)
treeb80d8b5928747b36b438c226d1d08b38aa25e133
parentf6f95972492bcb83d8fe4c63be3b96d46e47bab7 (diff)
downloadmsgpack-python-6c8e539eec5bfbda752337c34fb701980f061859.tar.gz
Update travis config
-rw-r--r--.travis.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index fd6125d..822ca9a 100644
--- a/.travis.yml
+++ b/.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