#! /bin/sh

set -e

PYS=$(py3versions -s)

cp -a tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $PYS; do
    echo "Testing with $py:"
    $py -m pytest tests
done
