* Start fleshing out documentation * Docs work * http3 * Update docs * Include lowercase status codes, for requests compat * Updating docs * Docs tweaks
13 lines
268 B
Bash
Executable File
13 lines
268 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export PACKAGE="http3"
|
|
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 --show-missing --fail-under=100
|