#!/bin/sh
echo "Running test suite with coverage report at the end"
echo -e "(requires coverage python package to be installed)\n"

coverage run setup.py test
coverage report -m userena/*.py userena/management/commands/*py
