#!/bin/sh

set -e

for i in $(py3versions -rv 2>/dev/null) ; do
	PYTHONPATH=$(pwd)/src python$i test/pydot_unittest.py
done
