#! /bin/sh

set -e

PYS=$(py3versions -s)

cp -a tests "$AUTOPKGTEST_TMP"
for py in $PYS
do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py tests/test_untangle.py
done
