#!/bin/sh

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

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