#!/bin/bash
set -e

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

