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