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

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

cd $TOP_DIR/test/unit
pytest --cov-report=html:"$TOP_DIR"/cover $@
rvalue=$?
rm -f .coverage
cd -
exit $rvalue