https://github.com/Microsoft/CNTK
Raw File
Tip revision: 4e877075b19038814a493da0b87471eb69d072e5 authored by Eldar Akchurin on 20 March 2017, 12:37:13 UTC
Adding retry logic to open file
Tip revision: 4e87707
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