Merge branch 'plugins' into 0.2

This commit is contained in:
Romain Dorgueil
2017-04-24 21:20:23 +02:00
2 changed files with 10 additions and 0 deletions

View File

@ -10,5 +10,6 @@ install:
- pip install coveralls
script:
- make clean docs test
- bin/run_all_examples.sh
after_success:
- coveralls

9
bin/run_all_examples.sh Executable file
View File

@ -0,0 +1,9 @@
#! /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