python-swiftclient/.unittests

9 lines
102 B
Bash
Executable File

#!/bin/bash
set -e
python setup.py testr --coverage
RET=$?
coverage report
rm -f .coverage
exit $RET