starlette/scripts/test

19 lines
241 B
Plaintext
Raw Normal View History

#!/bin/sh
2018-06-25 13:15:32 +00:00
export PREFIX=""
if [ -d 'venv' ] ; then
export PREFIX="venv/bin/"
fi
set -ex
if [ -z $GITHUB_ACTIONS ]; then
scripts/check
fi
${PREFIX}coverage run -m pytest $@
2018-06-25 13:15:32 +00:00
if [ -z $GITHUB_ACTIONS ]; then
scripts/coverage
fi