#!/bin/sh

set -e

PYTHON3S=$(py3versions -vr 2>/dev/null)
for pyvers in ${PYTHON3S}; do \
	python$pyvers -m pytest tests -v ; \
done
