#!/bin/sh
set -e

for py in $(py3versions -s 2>/dev/null);
do
    cd "$AUTOPKGTEST_TMP"

    echo "\n=== Testing serial build with $py ==="
    $py -c "import h5py; h5py.run_tests('-v')"
done
