set -e
for python in $(py3versions -s); do
    echo "-- Testing with $($python --version)"
    $python -m pytest -p pytester "$@"
done
