#!/bin/sh

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

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