#! /bin/sh

rv=0

for pv in $(py3versions -s); do
    echo "Running tests with $pv ..."
    python3 -munittest discover -v
    rvpy=$?
    case "$rvpy" in
	0|5) ;;
	*) rv=1
    esac
done
exit $rv
