[core/engine] Add module loading logic

Allow the engine to load modules from the bumblebee/modules/ directory.

see #23
This commit is contained in:
Tobi-wan Kenobi 2016-12-04 11:09:10 +01:00
parent cf1693548b
commit a2c6214baa
5 changed files with 65 additions and 5 deletions

View file

@ -2,10 +2,12 @@
test=$(which nosetests)
echo "testing $(python2 -V 2>&1)"
echo "testing with $(python2 -V 2>&1)"
python2 $test --rednose -v tests/
echo
if [ $? == 0 ]; then
echo
echo "testing $(python3 -V 2>&1)"
python3 $test --rednose -v tests/
echo "testing with $(python3 -V 2>&1)"
python3 $test --rednose -v tests/
fi