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

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