Files
ormar/scripts/tests
2020-08-02 09:00:13 +02:00

12 lines
227 B
Bash

#!/bin/sh -e
PACKAGE="async-orm"
PREFIX=""
if [ -d 'venv' ] ; then
PREFIX="venv/bin/"
fi
set -x
PYTHONPATH=. ${PREFIX}pytest --ignore venv --cov=${PACKAGE} --cov=tests --cov-fail-under=100 --cov-report=term-missing ${@}