#!/bin/sh

set -e

for python in $(py3versions -s); do
    $python -m pytest
done
