#!/bin/sh
set -e -u -x

cp -r test/ "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
    $py -m unittest discover -v
done
