summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2018-01-11 19:41:05 +0900
committerGitHub <noreply@github.com>2018-01-11 19:41:05 +0900
commit60ef3879d792ec92480cf9d6d610951657c2e8c7 (patch)
tree15d22f6c87d2da77feb86e8d09e8eb9a452bf4f5 /docker
parent5534d0c7af0114db3d27f7b96c82a7fe22ce1e40 (diff)
downloadmsgpack-python-60ef3879d792ec92480cf9d6d610951657c2e8c7.tar.gz
packer: Use PyUnicode_AsUTF8AndSize() for utf-8 (#272)
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/runtests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/runtests.sh b/docker/runtests.sh
index 11ef9f4..113b630 100755
--- a/docker/runtests.sh
+++ b/docker/runtests.sh
@@ -9,6 +9,6 @@ for V in cp36-cp36m cp35-cp35m cp27-cp27m cp27-cp27mu; do
pushd test # prevent importing msgpack package in current directory.
$PYBIN/python -c 'import sys; print(hex(sys.maxsize))'
$PYBIN/python -c 'from msgpack import _packer, _unpacker'
- $PYBIN/py.test -v
+ $PYBIN/pytest -v .
popd
done