Files
PyGithub/run_tests.sh
T
2012-02-12 13:49:08 +01:00

14 lines
178 B
Bash

#!/bin/sh
rm -f $(find -name "*.pyc")
coverage erase
for f in $(find -name "*Test.py")
do
coverage run --append $f --quiet
echo
done
coverage report -m --include=./*