#!/bin/sh

set -e -u
cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP/tests"

for py in $(py3versions -i); do
  echo "Testing with $py..."
  $py -m misaka_test
done
