#!/bin/sh

set -e -u

cp -va test "$AUTOPKGTEST_TMP"/
cd "$AUTOPKGTEST_TMP"

# Loop over all supported Python and unrar versions
for py in $(py3versions -s); do
	echo "Running testsuite with $py:"
	$py -m pytest -k "not (test_unrar_tool or test_reading or test_rar3_header_encryption)" test
done
