Files
bonobo/bin/run_all_examples.sh
2017-04-24 21:11:53 +02:00

10 lines
256 B
Bash
Executable File

#! /bin/bash
__PATH__=$(cd $(dirname "$0")/..; pwd)
EXAMPLES=$(cd $__PATH__; find bonobo/examples -name \*.py -not -name __init__.py)
for example in $EXAMPLES; do
echo "===== $example ====="
(cd $__PATH__; time bonobo run $example > /dev/null);
done