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