#!/bin/sh
set -efu

pys="$(py3versions -r 2> /dev/null)"

cp -a tests data $AUTOPKGTEST_TMP

cd "$AUTOPKGTEST_TMP"

for py in $pys; do
	echo "=== $py ==="
	$py -m nose tests
done
