#!/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:"
   find . -name *.py -exec $py {} \;
done
