summaryrefslogtreecommitdiffstats
path: root/unittests.sh
blob: a02be77966f37629b3a9e5775be9b309ad728b0f (plain)
1
2
3
4
5
6
7
#!/bin/bash

cd $(dirname $0)/test/unit
nosetests --exe --with-coverage --cover-package gluster --cover-erase $@
saved_status=$?
rm -f .coverage
exit $saved_status