swh:1:snp:f50ab94432af916b5fb8b4ad831e8dddded77084
Raw File
Tip revision: b50d7e7019eeb5112ebee0a428f598d86c352925 authored by Mudit Jain on 18 May 2018, 22:02:33 UTC
Fix HTK settings parsing. Fixes sequence training bug
Tip revision: b50d7e7
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