Spaces:
Sleeping
Sleeping
File size: 719 Bytes
66c9c8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | REM @echo off
call "%~dp0..\..\..\..\repo.bat" build --fetch-only %*
SET PYTHON="%~dp0..\..\..\..\_build\target-deps\python\python.exe"
echo "Installing test dependencies"
call %PYTHON% -m pip install matplotlib
call %PYTHON% -m pip install usd-core
call %PYTHON% -m pip install coverage
call %PYTHON% -m pip install torch --extra-index-url https://download.pytorch.org/whl/cu115
:: According to Jax docs, the pip packages don't work on Windows and may fail silently
::call %PYTHON% -m pip install "jax[cuda]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
echo "Installing Warp to Python"
call %PYTHON% -m pip install -e "%~dp0..\..\..\..\."
echo "Running tests"
call %PYTHON% -m warp.tests
|