#!/bin/sh

set -eu

cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for python in $(py3versions -s); do
    $python -m pytest -v tests -o cache_dir=$(pwd)
done
