#!/bin/sh
#
# Run tests under Python 3

set -eux

for X in $(py3versions --supported)
do
	${X} -m pytest -W always
done
