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