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