update test server_config and mitigate https://github.com/librosa/librosa/issues/1160 in server package test

This commit is contained in:
erogol 2020-07-12 15:37:10 +02:00
Родитель 0ab73061a1
Коммит ad235f0481
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -6,7 +6,7 @@
"wavernn_file": null, // wavernn checkpoint file name
"wavernn_config": null, // wavernn config file
"vocoder_config":null,
"vocoder_file": null,
"vocoder_checkpoint": null,
"is_wavernn_batched":true,
"port": 5002,
"use_cuda": false,

Просмотреть файл

@ -14,6 +14,9 @@ rm -f dist/*.whl
python setup.py --quiet bdist_wheel --checkpoint tests/outputs/checkpoint_10.pth.tar --model_config tests/outputs/dummy_model_config.json
pip install --quiet dist/TTS*.whl
# this is related to https://github.com/librosa/librosa/issues/1160
pip install numba==0.48
python -m TTS.server.server &
SERVER_PID=$!