#!/bin/sh -e

set -e

cp -rv "test/" "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"

for py in $(py3versions --supported); do
    echo "[*] testing $py:"
    $py -m pytest
done
