a2c6214baa
Allow the engine to load modules from the bumblebee/modules/ directory. see #23
13 lines
216 B
Bash
Executable file
13 lines
216 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test=$(which nosetests)
|
|
|
|
echo "testing with $(python2 -V 2>&1)"
|
|
python2 $test --rednose -v tests/
|
|
|
|
if [ $? == 0 ]; then
|
|
echo
|
|
|
|
echo "testing with $(python3 -V 2>&1)"
|
|
python3 $test --rednose -v tests/
|
|
fi
|