swift/.unittests

11 lines
161 B
Plaintext
Raw Normal View History

2010-07-12 17:03:45 -05:00
#!/bin/bash
TOP_DIR=$(dirname $(realpath "$0"))
cd $TOP_DIR/test/unit
pytest --cov-report=html:"$TOP_DIR"/cover $@
rvalue=$?
2010-07-12 17:03:45 -05:00
rm -f .coverage
cd -
exit $rvalue