#!/bin/bash
python=python
for test in `ls test*.py`
do
    echo $test
    $python $test || exit
done
