summaryrefslogtreecommitdiff
path: root/docker/runtests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/runtests.sh')
-rwxr-xr-xdocker/runtests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/runtests.sh b/docker/runtests.sh
index 113b630..f6c2c68 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 _packer, _unpacker'
+ $PYBIN/python -c 'from msgpack import _msgpack' # Ensure extension is available
$PYBIN/pytest -v .
popd
done