#!/bin/sh
set -efu

cp tests.py "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
    $py tests.py
done
