#!/bin/sh

set -e

for py in $(py3versions --supported 2>/dev/null)
do
    echo "Testing with $py nose2:"
    $py -m nose2 tests 2>&1
done
