#!/bin/sh
set -efu

PYS=${PYS:-"$(py3versions -r 2>/dev/null)"}
TESTPKG=${TESTPKG:-numexpr}

cd "$ADTTMP"

for py in $PYS; do
    echo "=== $py ==="
    $py-dbg -c "import $TESTPKG; $TESTPKG.test()" 2>&1
done
