test(examples): print error message on fail
This commit is contained in:
parent
2b2e4a5f37
commit
2649e3ac31
@ -5,13 +5,15 @@ failed=0
|
||||
for example in $(find $1 -maxdepth 1 -name "*.py")
|
||||
do
|
||||
echo -n "$x" $example '... '
|
||||
export DISPLAY= && python $example --fast_dev_run 1 &> /dev/null
|
||||
export DISPLAY= && python $example --fast_dev_run 1 &> run_log.txt
|
||||
if [[ $? -ne 0 ]]; then
|
||||
echo "FAILED!!"
|
||||
cat run_log.txt
|
||||
failed=1
|
||||
else
|
||||
echo "SUCCESS!"
|
||||
fi
|
||||
rm run_log.txt
|
||||
done
|
||||
|
||||
exit $failed
|
||||
|
Loading…
Reference in New Issue
Block a user