https://github.com/Microsoft/CNTK
Raw File
Tip revision: fec5bd5fdcd76a76e11dc533dbb5bdf2d5b14a29 authored by Vadim Mazalov on 13 January 2017, 01:41:40 UTC
CTC: Further refactoring
Tip revision: fec5bd5
test.bat
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 ..\..\Tests\EndToEndTests\CNTKv2Python\Examples
echo RUNNING cntk\Tests\EndToEndTests\CNTKv2Python\Examples tests
pytest
echo(
popd


endlocal
back to top