#!/bin/sh

set -e

cp Cheetah/Tests/Test.py "$AUTOPKGTEST_TMP"

for py in $(pyversions -r 2>/dev/null); do
	cd "$AUTOPKGTEST_TMP"
	echo "Running upstream Test.py with $py:"
	$py Test.py
done
