#!/bin/sh

set -eu
cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for python in $(pyversions -i); do
    echo "Testing with $python..."
    $python -m unittest discover -v -s tests
done
