#!/bin/bash

for t in tests/test-*; do
    echo $t
    python $t
    echo
done
