#!/bin/sh

set -e -u

for py in $(py3versions --supported); do
    $py -m pytest -v tests
done
