#!/bin/sh -e

cp -r Tests/Py "$AUTOPKGTEST_TMP"

for py in $(py3versions -r 2> /dev/null); do
    cd "$AUTOPKGTEST_TMP"/Py
    echo "Testing with $py:"
    for f in $(find . -name *.py); do
        $py $f
    done
done
