#!/bin/bash for test in *_test.py; do echo "Testing $test ..." ./${test} 2>&1 echo done