#!/bin/sh
set -e
cd tests
for f in *.py; do
    python3 $f
done
