#!/bin/sh
set -e -u
for py in $(pyversions -i); do echo "[*] testing $py:"; PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=. $py -Wd test/test_func.py 2>&1; done
