#!/bin/sh
set -e
for py in $(pyversions -i); do echo "[*] testing on $py:"; $py -Wd -m pytest -v -x -rs testing/ 2>&1; done
