#!/bin/sh

set -e

for py in $(py3versions --supported 2>/dev/null)
do
    echo "Testing with $py pytest:"
    $py -m pytest tests.py 2>&1
done
