#!/bin/sh
set -e

rv=0
for py in $(py3versions -s); do
  echo "===== Testing with $py ====="
  if ! $py -c 'import sane'; then
    rv=1
  fi
done
exit $rv
