-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# #!/usr/bin/env python3` | ||
# import os | ||
# import shutil | ||
# import glob | ||
# from tests import get_tests_output_path | ||
# from TTS.utils.manage import ModelManager | ||
#!/usr/bin/env python3` | ||
import os | ||
import shutil | ||
import glob | ||
from tests import get_tests_output_path | ||
from TTS.utils.manage import ModelManager | ||
|
||
# TODO: re-enable this after moving models to github releases | ||
# def test_if_all_models_available(): | ||
# """Check if all the models are downloadable.""" | ||
# print(" > Checking the availability of all the models under the ModelManager.") | ||
# manager = ModelManager(output_prefix=get_tests_output_path()) | ||
# model_names = manager.list_models() | ||
# for model_name in model_names: | ||
# manager.download_model(model_name) | ||
# print(f" | > OK: {model_name}") | ||
|
||
# folders = glob.glob(os.path.join(manager.output_prefix, '*')) | ||
# assert len(folders) == len(model_names) | ||
# shutil.rmtree(manager.output_prefix) | ||
def test_if_all_models_available(): | ||
"""Check if all the models are downloadable.""" | ||
print(" > Checking the availability of all the models under the ModelManager.") | ||
manager = ModelManager(output_prefix=get_tests_output_path()) | ||
model_names = manager.list_models() | ||
for model_name in model_names: | ||
manager.download_model(model_name) | ||
print(f" | > OK: {model_name}") | ||
|
||
folders = glob.glob(os.path.join(manager.output_prefix, '*')) | ||
assert len(folders) == len(model_names) | ||
shutil.rmtree(manager.output_prefix) |