#!/bin/sh

for interp in `py3versions -s`; do
    $interp -m pytest;
done
