#!/bin/sh

set -eu
cp -r test "$ADTTMP/"
cd "$ADTTMP"

for python in $(pyversions -i); do
	PYTHONWARNINGS=d $python /usr/bin/nosetests -vv 2>&1
done
