bumblebee-status/runtests.sh

12 lines
257 B
Bash
Raw Normal View History

#!/bin/sh
echo "testing with $(python2 -V 2>&1)"
python2 $(which nosetests) -v --with-coverage --cover-erase tests/
if [ $? == 0 ]; then
echo
echo "testing with $(python3 -V 2>&1)"
python3 $(which nosetests) -v --with-coverage --cover-erase tests/
fi