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