#!/bin/sh
set -e

# Run all tests with all supported Python versions
for py in $(py3versions -s); do
    echo "Running tests with $py:"
    $py -m pytest tests/ -v
done
