#!/bin/sh
set -e -u
cp -a tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -i); do echo "[*] testing $py:"; $py -Wd -m pytest -v -x 2>&1; done
