mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-11-01 10:00:54 +00:00
8 lines
220 B
Bash
8 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
|