#!/bin/sh
set -eu

cp -a tests "$AUTOPKGTEST_TMP"/
cd "$AUTOPKGTEST_TMP"
for python in $(py3versions -s); do
    "$python" -m pytest -v tests
done
