#!/bin/sh

set -efu

cp pyproject.toml ${AUTOPKGTEST_TMP}
cp -r tests ${AUTOPKGTEST_TMP}

cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest tests -m 'not requiresinternet'
done
