#!/bin/sh

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

for python in $(py3versions -i); do
    echo "Testing with $python..."
    $python -m pytest -vv
done
