#!/bin/sh

set -euf

cp -a tests $AUTOPKGTEST_TMP/
cd $AUTOPKGTEST_TMP
for python in $(py3versions -s); do
    echo "=== Testing with $python ==="
    $python -m unittest discover -v
done
