#!/bin/sh

set -e

for python in $(py3versions -s); do
    $python -m unittest 2>&1
done

