#!/bin/sh

set -e -u

for py in $(py3versions -s 2>/dev/null); do
    echo "Running testsuite with $py:"
    $py setup.py test
done
