#!/bin/sh

set -e

PYTHONS="`pyversions -vd` `py3versions -vd`"

cd test

for PY in $PYTHONS; do
    nosetests-$PY -v 2>&1;
done
