Revision 07961fb34d3d7a143e67a8e7c0c5c821d72f712f authored by Dave Bouvier on 14 January 2014, 15:29:33 UTC, committed by Dave Bouvier on 14 January 2014, 15:29:33 UTC
1 parent 1351f2a
Raw File
run_unit_tests.sh
#!/bin/sh

## Excluding controllers due to the problematic genetrack dependency
## Excluding job runners due to various external dependencies

COVERAGE=`which coverage`
COVERAGE_ARG=""
if [ $COVERAGE ]; then
    COVERAGE_ARG="--with-coverage"
fi

python ./scripts/nosetests.py -v \
    $COVERAGE_ARG \
    --with-nosehtml --html-report-file run_unit_tests.html \
    --with-doctest --exclude=functional --exclude="^get" \
    --exclude=controllers --exclude=runners lib test/unit
back to top