#!/bin/sh
set -efu

cp -a testing $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP

for py in $(py3versions -s); do
	echo "=== $py ==="
	$py -m pytest testing -k 'not test_warning and not test_excinfo'
done
