summaryrefslogtreecommitdiff
path: root/.unittests
blob: 3a7ffe9bb40628493761c6b98096260e78ca24a0 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -e

python setup.py testr --coverage  --testr-args="test.unit"
RET=$?
coverage report -m
rm -f .coverage
exit $RET