mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-11-06 04:20:58 +00:00
9 lines
220 B
Bash
9 lines
220 B
Bash
|
|
#!/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
|