2020-11-12 18:33:29 +03:00
|
|
|
set -e
|
2020-08-03 14:00:44 +03:00
|
|
|
TF_CPP_MIN_LOG_LEVEL=3
|
|
|
|
|
2020-07-16 16:05:36 +03:00
|
|
|
# tests
|
2020-11-09 15:30:42 +03:00
|
|
|
nosetests tests -x &&\
|
2020-07-16 16:05:36 +03:00
|
|
|
|
|
|
|
# runtime tests
|
2020-08-04 15:29:05 +03:00
|
|
|
./tests/test_server_package.sh && \
|
2020-12-08 13:17:08 +03:00
|
|
|
./tests/test_tacotron_train.sh && \
|
2020-10-29 18:50:07 +03:00
|
|
|
./tests/test_glow-tts_train.sh && \
|
2020-10-29 17:47:15 +03:00
|
|
|
./tests/test_vocoder_gan_train.sh && \
|
|
|
|
./tests/test_vocoder_wavernn_train.sh && \
|
2020-10-29 18:50:07 +03:00
|
|
|
./tests/test_vocoder_wavegrad_train.sh && \
|
2020-12-28 16:41:09 +03:00
|
|
|
./tests/test_speedy_speech_train.sh && \
|
2020-07-16 16:05:36 +03:00
|
|
|
|
|
|
|
# linter check
|
|
|
|
cardboardlinter --refspec master
|