ECHO 'Beginning Test Run...'
ECHO ''
ECHO 'Removing *.pyc files'
find . -name "*.pyc" -exec rm -rf {} \;

ECHO 'Running test suite'
coverage run manage.py test edx_proctoring --verbosity=3
coverage report -m
coverage html
pep8 edx_proctoring
pylint edx_proctoring --report=no
ECHO ''
ECHO 'View the full coverage report at {CODE_PATH}/edx-proctoring/htmlcov/index.html'
ECHO ''
ECHO 'Testing Complete!'
