#!/bin/sh

set -e

for pyvers in $(py3versions -vr 2>/dev/null) ; do
	python$pyvers -m testtools.run testscenarios.test_suite
done
