#!/bin/sh
set -efu

cp -a tests $AUTOPKGTEST_TMP

cd ${AUTOPKGTEST_TMP}

for py in `py3versions -s`; do
    printf '=-=-=-=-=-= Running tests for %s =-=-=-=-=-=\n' "$py"
    $py -m pytest tests
done
