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

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