#!/bin/sh
set -e -u

export TZ=Europe/Kaliningrad
export LC_TIME=C

cp -va pytrainer/test "$AUTOPKGTEST_TMP"/
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s 2>/dev/null); do
    echo "Running testsuite with $py:"
    xvfb-run -a $py -m unittest
done
