prototorch_models/tests/test_examples.sh

20 lines
354 B
Bash
Raw Normal View History

2021-05-21 16:16:17 +00:00
#! /bin/bash
failed=0
2021-05-21 16:16:17 +00:00
for example in $(find $1 -maxdepth 1 -name "*.py")
do
echo -n "$x" $example '... '
export DISPLAY= && python $example --fast_dev_run 1 &> run_log.txt
2021-05-21 16:16:17 +00:00
if [[ $? -ne 0 ]]; then
2021-05-25 19:28:05 +00:00
echo "FAILED!!"
cat run_log.txt
failed=1
else
2021-05-25 19:28:05 +00:00
echo "SUCCESS!"
2021-05-21 16:16:17 +00:00
fi
rm run_log.txt
done
2021-05-25 19:28:05 +00:00
exit $failed