https://github.com/Microsoft/CNTK
Raw File
Tip revision: cc163da46d5cef079d8ae4c76e378e74a09bddc4 authored by Manik Jindal on 28 February 2018, 23:08:19 UTC
Adding nightly builds links in news
Tip revision: cc163da
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