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