File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ matrix:
2121 install :
2222 - pip install -U pip
2323 - pip install cython
24- - cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
24+ - make cython
2525 - docker pull $DOCKER_IMAGE
2626 script :
2727 - docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
@@ -34,19 +34,19 @@ matrix:
3434 install :
3535 - pip install -e .
3636 script :
37- - py.test -v test
37+ - pytest -v test
3838
3939
4040install :
4141 - pip install -U pip
4242 - pip install cython
43- - cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
43+ - make cython
4444 - pip install -e .
4545
4646script :
4747 - python -c 'import sys; print(hex(sys.maxsize))'
48- - python -c 'from msgpack import _packer, _unpacker '
49- - py.test -v test
50- - MSGPACK_PUREPYTHON=x py.test -v test
48+ - python -c 'from msgpack import _msgpack '
49+ - pytest -v test
50+ - MSGPACK_PUREPYTHON=x pytest -v test
5151
5252# vim: sw=2 ts=2
You can’t perform that action at this time.
0 commit comments