powerline/tests/run_python_tests.sh
ZyX 4c95928c96 Split shell tests into files
I am mostly interested in running all python and vim tests separately from other 
tests.
2014-08-29 22:22:39 +04:00

10 lines
167 B
Bash
Executable File

#!/bin/sh
FAILED=0
for file in tests/test_*.py ; do
if ! ${PYTHON} $file --verbose --catch ; then
echo "Failed test(s) from $file"
FAILED=1
fi
done
exit $FAILED