#!/bin/sh
set -efu

pys="$(py3versions -s)"

cp -a test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $pys; do
	$py -m pytest test
done
