#!/bin/sh
set -efu

export PYTHONWARNINGS=d

python_all="$(pyversions -rv 2>/dev/null)"

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

for py in $python_all; do
    echo "=== python$py ==="
    nosetests-$py --verbose 2>&1
done
