#!/bin/sh
set -efu

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

cd "$ADTTMP"

for py in $pys; do
	echo "=== $py ==="
	$py -c "import h5py; h5py.run_tests()" 2>&1
	echo "=== $py-dbg ==="
	$py-dbg -c "import h5py; h5py.run_tests()" 2>&1
done
