#!/bin/sh
set -e
export LC_ALL=C.UTF-8
for PYTHON3 in $(py3versions -s)
do "$PYTHON3" -m unittest -v
done
