#!/bin/sh
set -e -u -x

pys="$(py3versions -s 2> /dev/null)"

cp debian/tests/simple_test.py "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"


for py in $pys; do
    PYTHONPATH=. $py simple_test.py
done
