#!/bin/sh

set -e

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