#!/bin/sh
set -e
for py in $(pyversions -i); do echo "$py:\n"; $py -Wd -m pytest -v -x 2>&1; done
