Files
ormar/scripts/test
2020-08-02 09:05:06 +02:00

13 lines
230 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 "${@}"