Skip to content

Commit 6c8e539

Browse files
committed
Update travis config
1 parent f6f9597 commit 6c8e539

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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

4040
install:
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

4646
script:
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

0 commit comments

Comments
 (0)