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