Files
Tom Christie 66be821d13 Initial commit
2019-03-21 11:26:42 +00:00

13 lines
245 B
Bash
Executable File

#!/bin/sh -e
export PACKAGE="requests_async"
export PREFIX=""
if [ -d 'venv' ] ; then
export PREFIX="venv/bin/"
fi
set -x
PYTHONPATH=. ${PREFIX}pytest --ignore venv --cov tests --cov ${PACKAGE} --cov-report= ${@}
${PREFIX}coverage report