#!/bin/sh

set -e

for pyvers in `py3versions -rv 2>/dev/null`; do
	echo "===> Testing with python$pyvers"
	PYTHON=python$pyvers python$pyvers -m pytest -m 'not benchmark' -v
done
