#!/bin/sh
set -e -u
cp -a tests/ "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP/tests/"
for py in $(py3versions -s); do
    LC_ALL=C.UTF-8 "$py" -m pytest
done
