2010-07-12 17:03:45 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-10-15 15:06:35 -07:00
|
|
|
TOP_DIR=$(dirname $(realpath "$0"))
|
2013-11-27 12:07:42 -05:00
|
|
|
|
|
|
|
cd $TOP_DIR/test/unit
|
2022-07-26 15:07:35 -07:00
|
|
|
pytest --cov-report=html:"$TOP_DIR"/cover $@
|
2012-04-18 15:12:10 +03:00
|
|
|
rvalue=$?
|
2010-07-12 17:03:45 -05:00
|
|
|
rm -f .coverage
|
2012-03-12 21:54:31 +00:00
|
|
|
cd -
|
2012-11-26 09:58:09 -06:00
|
|
|
exit $rvalue
|