set -e
cp -r test "$AUTOPKGTEST_TMP"
for py in $(py3versions -r 2>/dev/null); do
  cd "$AUTOPKGTEST_TMP"
  echo "Testing meshio with $py:"
  $py -m pytest -v test
done
