#!/bin/sh
set -e
for py in $(py3versions -s); do
    $py -Wd -m pytest --no-cov -v -x 2>&1
done
