#!/bin/sh
set -efu

cp -a ./tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py3vers in $(py3versions -sv); do
    echo Testing with python$py3vers
    python$py3vers -m unittest discover ./tests 2>&1
done
