#!/bin/sh

set -e

for pyvers in $(py3versions -vr 2>/dev/null); do
	PYTHONPATH=. python$pyvers -m pytest --ignore=test/test_packaging.py
done
