tts2jk / tests /aux_tests /test_readme.py
juliankoe's picture
Upload folder using huggingface_hub
a9384d7
raw
history blame contribute delete
270 Bytes
import subprocess
import sys
from pathlib import Path
def test_readme_up_to_date():
root = Path(__file__).parent.parent.parent
sync_readme = root / "scripts" / "sync_readme.py"
subprocess.check_call([sys.executable, str(sync_readme), "--check"], cwd=root)