diff --git a/tests/unit/ci.sh b/tests/unit/ci.sh index cb273d6f6..8abd0aafa 100644 --- a/tests/unit/ci.sh +++ b/tests/unit/ci.sh @@ -1,12 +1,6 @@ function main(){ speech_ci_path=`pwd` - echo "Start cli" - cd ${speech_ci_path}/cli - source path.sh - bash test_cli.sh - echo "End cli" - echo "Start asr" cd ${speech_ci_path}/asr bash deepspeech2_online_model_test.sh @@ -26,6 +20,11 @@ function main(){ cd ${speech_ci_path}/vector python test_augment.py echo "End Vector" + + echo "Start cli" + cd ${speech_ci_path}/cli + bash test_cli.sh + echo "End cli" } main