#!/bin/sh
set -efu

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

cp -a test "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for py in $pys; do
	echo "===autopkgtest for accessible-pygments==="
	$py -m pytest test 2>&1
done
