https://github.com/Microsoft/CNTK
Raw File
Tip revision: aeb1a48ff32c39328be568725027175e7d0af54d authored by Eldar Akchurin on 26 April 2017, 14:31:47 UTC
Adding keep data in memory
Tip revision: aeb1a48
run-test
#!/bin/bash

SCRIPTSDIR=$TEST_ROOT_DIR/../../Scripts

pushd $SCRIPTSDIR
echo Current dir: $SCRIPTSDIR

py.test

if [ "$?" -eq "0" ]; then
  echo "__COMPLETED__"
fi

popd

back to top