#!/bin/sh -e

for py in $(py3versions --supported 2>/dev/null); do
    echo "Testing with $py: ";
    for f in python/tests/*.py; do
	$py -m unittest "$f" -v
    done;
done;
