https://github.com/Microsoft/CNTK
Raw File
Tip revision: 08a589f63dc6dadac557a137758dd39658744eec authored by Mudit Jain on 15 February 2017, 01:05:23 UTC
Merge branch 'master' of https://github.com/Microsoft/cntk into muditj/HTKDeserializerPythonWrapper
Tip revision: 08a589f
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