2012-12-21 08:51:59 +01:00
|
|
|
#!/bin/bash
|
2012-12-21 12:17:31 +01:00
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# tools/tests.sh # run all tests
|
|
|
|
# tools/tests.sh decks # test only test_decks.py
|
|
|
|
# coverage=1 tools/tests.sh # run with coverage test
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2015-12-02 08:02:42 +01:00
|
|
|
BIN="$(cd "`dirname "$0"`"; pwd)"
|
|
|
|
export PYTHONPATH=${BIN}/..:${PYTHONPATH}
|
|
|
|
|
2012-12-21 12:17:31 +01:00
|
|
|
dir=.
|
|
|
|
|
|
|
|
if [ x$1 = x ]; then
|
|
|
|
lim="tests"
|
2012-12-21 08:51:59 +01:00
|
|
|
else
|
2012-12-21 12:17:31 +01:00
|
|
|
lim="tests.test_$1"
|
2012-12-21 08:51:59 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ x$coverage != x ]; then
|
|
|
|
args="--with-coverage"
|
|
|
|
else
|
|
|
|
args=""
|
|
|
|
echo "Call with coverage=1 to run coverage tests"
|
|
|
|
fi
|
2018-04-12 09:59:51 +02:00
|
|
|
(cd $dir && nosetests -vs --processes=16 --process-timeout=300 $lim $args --cover-package=anki)
|