#!/bin/sh

set -e

cp -va test_files "$AUTOPKGTEST_TMP"
cp -va test.py "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
    echo "[*] testing $py:"
    $py -m unittest test 2>&1
done
