#!/bin/sh

set -e -u

cp -va tests "$AUTOPKGTEST_TMP"/
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
        echo "Running testsuite with $py:"
        $py -m pytest -v --disable-warnings --maxfail=1 tests
done
