fonttools/run-tests.sh
Behdad Esfahbod 80758953ff Allow running test suite without git checkout
Should I prefer the git-grep if .git/ is available?
2015-04-14 19:11:25 -07:00

18 lines
379 B
Bash
Executable File

#!/bin/sh
cd Lib
PYTHONPATH=".:$PYTHONPATH"
export PYTHONPATH
TESTS=`grep -r --include='*.py' -l -e doctest -e unittest *`
ret=0
for test in $TESTS; do
echo "Running tests in $test"
test=`echo "$test" | sed 's@[/\\]@.@g;s@[.]py$@@'`
if ! python -m $test -v; then
ret=$((ret+1))
fi
done
if test $ret != 0; then
echo "$ret source file(s) had tests failing" >&2
fi
exit $ret