#!/usr/bin/env sh

MIN_COV=94

cp -r tests $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP
for py in $(py3versions -s); do
	$py -m pytest --cov=pass_audit --cov-report=term-missing --cov-fail-under=$MIN_COV --cov-branch tests/test_*.py
done
