#!/bin/sh

set -e

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