gradio/scripts/run_timed_tests.sh
Ömer Faruk Özdemir ffcfc5dd1e File renamed
2022-02-04 15:32:15 +03:00

9 lines
193 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 --durations=0 test
fi