#!/bin/sh

set -eu

cp test/* $ADTTMP
cd $ADTTMP

for python in $(pyversions -s); do
	$python test.py
done
