#!/bin/sh
set -e

cp test_pytest_subunit.py "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s 2>/dev/null); do
	echo "Testing with $py"
	$py -m pytest test_pytest_subunit.py
done
