#!/bin/sh

set -e

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