#!/bin/sh
set -e -u

cp -a tests/ "$AUTOPKGTEST_TMP"

# Run build-time tests
for py in $(py3versions -s 2> /dev/null)
do
    echo "Run test using ${py}"
    ${py} -m pytest -v
done
