tts_trainer / Trainer /tests /__init__.py
MrAR's picture
Upload 51 files
4698412 verified
Raw
History Blame Contribute Delete
142 Bytes
import os
def run_cli(command):
exit_status = os.system(command)
assert exit_status == 0, f" [!] command `{command}` failed."