blob: 5d87f696b4f031e7079c8f753a1a598e1edf59b7 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
set -ex
${PYTHON} -VV
${PYTHON} -m pip install setuptools wheel pytest
${PYTHON} setup.py build_ext -if
${PYTHON} -c "from msgpack import _cmsgpack"
${PYTHON} setup.py bdist_wheel
${PYTHON} -m pytest -v test
|