summaryrefslogtreecommitdiff
path: root/.unittests
blob: aecedf813eff779ed2c81981ee4b8387b278f73e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

TOP_DIR=$(dirname $(realpath "$0"))

cd $TOP_DIR/test/unit
nosetests --exe --with-coverage --cover-package swift --cover-erase --cover-branches --cover-html --cover-html-dir="$TOP_DIR"/cover $@
rvalue=$?
rm -f .coverage
cd -
exit $rvalue