summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2018-11-14 16:35:37 +0900
committerGitHub <noreply@github.com>2018-11-14 16:35:37 +0900
commitd782464c9150e448ab3a8d81197ff335e1ac2c2b (patch)
treed008991560c7ca596e11e4e760a3e613fe252bc4 /docker
parent2b5f59166beeccde0ee230c8673cf50932c8daba (diff)
downloadmsgpack-python-d782464c9150e448ab3a8d81197ff335e1ac2c2b.tar.gz
Refactor Cython code (#328)
_msgpack -> _cmsgpack
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 f6c2c68..c6bbf60 100755
--- a/docker/runtests.sh
+++ b/docker/runtests.sh
@@ -8,7 +8,7 @@ for V in cp36-cp36m cp35-cp35m cp27-cp27m cp27-cp27mu; do
$PYBIN/pip install pytest
pushd test # prevent importing msgpack package in current directory.
$PYBIN/python -c 'import sys; print(hex(sys.maxsize))'
- $PYBIN/python -c 'from msgpack import _msgpack' # Ensure extension is available
+ $PYBIN/python -c 'from msgpack import _cmsgpack' # Ensure extension is available
$PYBIN/pytest -v .
popd
done