#!/bin/sh
set -e -u
cp -a tests/ "$ADTTMP"
cd "$ADTTMP/tests/"

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

