Files
PhotonVision/photon-lib/py/buildAndTest.bat
Chris Gerth 47aea29b6b Add photonlibpy (#1040)
* Added a pure-python implementation of photonlib, named photonlibpy and hosted on pypi

---------

Co-authored-by: Matt <matthew.morley.ca@gmail.com>
2023-12-16 12:32:49 -06:00

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