#!/bin/bash
set -e

for py in $(py3versions -r 2> /dev/null)
do
	xvfb-run -a $py -m pytest -v
done

