#!/bin/sh
set -e
for py in $(py3versions -i); do echo "[*] testing $py:"; PYTHONPATH=. $py -Wd -m pytest -v -x src/tests/test_d* 2>&1; done
