#!/bin/sh

cp test.py "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

# Run tests in all supported versions of Python
for py in $(py3versions --supported); do
  echo "-=-=-=-=-= Running tests for ${py} =-=-=-=-=-=-"
  ${py} -m railroad unicode
done
