#!/bin/sh

set -e

for i in $(py3versions -sv) ; do
	PYTHON=python$i python$i -m pytest tests -v --ignore-glob=tests/asgi/test_asgi_servers.py
done
