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