#!/bin/bash

set -e

for py in $(py3versions --supported 2> /dev/null)
do
    pushd tests
    echo "Testing with $py in $(pwd):"
    nosetests3 -v
    popd
done
