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