#!/bin/sh

set -e

for py in $(py3versions -s 2>/dev/null)
do
    echo "Testing with $py:"
    export PYTHON=$py
    ./check tests
done
