#!/bin/sh

set -e

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