mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-24 01:31:44 +00:00
15 lines
306 B
Bash
15 lines
306 B
Bash
|
|
# Uninstall if it already was installed
|
||
|
|
python3 -m pip uninstall -y photonlibpy
|
||
|
|
|
||
|
|
# Build wheel
|
||
|
|
python3 setup.py bdist_wheel
|
||
|
|
|
||
|
|
# Install whatever wheel was made
|
||
|
|
for f in dist/*.whl; do
|
||
|
|
echo "installing $f"
|
||
|
|
python3 -m pip install --no-cache-dir "$f"
|
||
|
|
done
|
||
|
|
|
||
|
|
# Run the test suite
|
||
|
|
pytest -rP --full-trace
|