#!/bin/sh

set -e

export PYTHONPATH=`pwd`/pyptlib/test:$PYTHONPATH

for test in $(find pyptlib/test -type f -name 'test_*.py'); do
	python $test
done
