1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/run-tests.sh
Olof Johansson 281d913a73 run_tests: Generate coverage report in HTML
If run_tests is called with the -C flag, a cover/ directory is
created with a detailed coverage report in HTML.
2013-04-21 10:45:57 +02:00

34 lines
468 B
Bash
Executable File

#!/bin/sh
OPTS='--all-modules '
die() {
echo Error: "$@"
exit 1
}
COVER_OPTS="--with-coverage --cover-package=svtplay_dl"
while [ "$#" -gt 0 ]; do
case $1 in
-c|--coverage)
OPTS="$OPTS $COVER_OPTS"
;;
-C|--coverage-html)
OPTS="$OPTS $COVER_OPTS --cover-html"
;;
-v|--verbose)
OPTS="$OPTS --verbose"
;;
-*)
die "Unknown option: '$1'"
;;
*)
die "Unknown argument: '$1'"
;;
esac
shift
done
PYTHONPATH=lib nosetests $OPTS