#!/bin/sh
set -euf
cp -a test $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP
for py in $(py3versions -s); do
    $py test/runtests.py
done
