#! /bin/sh

set -e

for py3vers in $(py3versions -sv); do
    echo Testing with python$py3vers
    python$py3vers test.py
done
