#!/bin/sh
set -efu

pys="$(pyversions -r 2>/dev/null)"

# Change this to close bug #919586
cp -a ./examples ./tests "$ADTTMP"
#cp -a ./examples ./biom/tests "$ADTTMP"

cd "$ADTTMP"

export LC_ALL=C.UTF-8

for py in $pys; do
	echo "=== $py ==="
	$py -m nose tests 2>&1
done
