#!/bin/sh

set -e

for py in $(py3versions -s 2>/dev/null); do
	cd "$AUTOPKGTEST_TMP"
	echo "Loading module with $py:"
	$py -c "import Cheetah; print(Cheetah)"
done
