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