Add tests (#3836)
* Add tests * fix * Fix * Fix * disable deepspeech2_online_model_test * disable test_data_table * Fixpull/3841/head
parent
d9eb82a632
commit
7e52aaed74
@ -0,0 +1,31 @@
|
||||
function main(){
|
||||
set -ex
|
||||
speech_ci_path=`pwd`
|
||||
|
||||
echo "Start asr"
|
||||
cd ${speech_ci_path}/asr
|
||||
bash deepspeech2_online_model_test.sh
|
||||
python error_rate_test.py
|
||||
python mask_test.py
|
||||
python reverse_pad_list.py
|
||||
echo "End asr"
|
||||
|
||||
echo "Start TTS"
|
||||
cd ${speech_ci_path}/tts
|
||||
python test_data_table.py
|
||||
python test_enfrontend.py
|
||||
python test_mixfrontend.py
|
||||
echo "End TTS"
|
||||
|
||||
echo "Start Vector"
|
||||
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
|
Loading…
Reference in new issue