mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-21 01:01:41 +00:00
15 lines
280 B
Batchfile
15 lines
280 B
Batchfile
|
|
:: Uninstall if it already was installed
|
||
|
|
pip uninstall -y photonlibpy
|
||
|
|
|
||
|
|
:: Build wheel
|
||
|
|
python setup.py bdist_wheel
|
||
|
|
|
||
|
|
:: Install whatever wheel was made
|
||
|
|
for %%f in (dist/*.whl) do (
|
||
|
|
echo installing dist/%%f
|
||
|
|
pip install --no-cache-dir dist/%%f
|
||
|
|
)
|
||
|
|
|
||
|
|
:: Run the test suite
|
||
|
|
pytest
|