#!/bin/sh
set -e

cp -a tests "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s)
do echo "[*] testing $py:"
    $py -Wd -m pytest -v 2>&1
done
