13 lines
226 B
Bash
Executable File
13 lines
226 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
PACKAGE="ormar"
|
|
|
|
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 "${@}"
|