#!/bin/bash
set -e

for py in $(py3versions --supported 3> /dev/null)
do
        $py -m pytest -v test
done
