28 строки
355 B
Batchfile
28 строки
355 B
Batchfile
setlocal
|
|
|
|
cd "%~dp0"
|
|
|
|
set PATH=%CD%\..\..\x64\Release;%PATH%
|
|
set PYTHONPATH=%CD%;%CD%\examples;%PYTHONPATH%
|
|
|
|
pushd cntk\tests
|
|
echo RUNNING cntk unit tests...
|
|
pytest --deviceid gpu
|
|
echo(
|
|
popd
|
|
|
|
pushd cntk\ops\tests
|
|
echo RUNNING cntk\ops unit tests...
|
|
pytest
|
|
echo(
|
|
popd
|
|
|
|
pushd examples\test
|
|
echo RUNNING cntk\examples\test tests
|
|
pytest
|
|
echo(
|
|
popd
|
|
|
|
|
|
endlocal
|