#!/bin/sh
set -efu

cp -a test $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP

for py in $(py3versions -s); do
	echo "=== $py ==="
	$py test/test.py -v
done
