swh:1:snp:f50ab94432af916b5fb8b4ad831e8dddded77084
Raw File
Tip revision: c2fd0e928e375cafda251631c70a9068908e26c2 authored by William Darling on 12 October 2016, 14:55:39 UTC
initial docstrings filled in, some cntk.Axis changed to cntk.axis.Axis, but not all
Tip revision: c2fd0e9
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