Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhengr
/
ChatTTS2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c02bdcd
ChatTTS2
/
tests
/
testall.sh
zhengr
init
c02bdcd
7 months ago
raw
Copy download link
history
blame
Safe
261 Bytes
#!/bin/sh
exitcode=0
for
file
in
tests/*.py
do
echo
"Testing
$file
..."
python
"
$file
"
if
[ $? -ne 0 ]
then
echo
"Error:
$file
exited with a non-zero status."
exitcode=1
fi
echo
"Test
$file
success"
done
exit
$exitcode