#! /bin/bash

set -e

PYS=$(py3versions -s)

cp -a mystic/tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $PYS
do
    echo "Testing with $py:"
    $py -m tests
done
