#!/bin/sh
set -e -u
for py in $(py3versions -i); do echo "[*] testing $py:"; $py -m nose -v 2>&1; done
