mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-17 11:29:58 +08:00
* textbox-autoheight - add max-lines to textbox * textbox-autoheight - reformat * textbox-autoheight - add demo * textbox-autoheight - tweaks on scripts * textbox-autoheight - fix tests * textbox-autoheight - fix tests * textbox-autoheight - fix tests * textbox-autoheight - convert default max_height from 100 to 20 * textbox-autoheight - convert default max_height from 100 to 20
9 lines
225 B
Bash
9 lines
225 B
Bash
#!/bin/bash
|
|
if [ -z "$(ls | grep CONTRIBUTING.md)" ]; then
|
|
echo "Please run the script from repo directory"
|
|
exit -1
|
|
else
|
|
echo "Running the tests"
|
|
python -m pytest --cov=gradio --durations=20 --durations-min=1 test
|
|
fi
|