#!/bin/sh
set -efu

export LANG=C.UTF-8
export LC_ALL=C.UTF-8

for py in $(py3versions -i); do
    $py -m pytest
done
