#!/bin/sh

set -e -u

cp -va test_functools.py "$AUTOPKGTEST_TMP"/
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s 2>/dev/null); do
	echo "Running testsuite with $py:"
	$py -m pytest test_functools.py
done
