#!/bin/sh

PYTHON3S=$(py3versions -vr)

set -e
echo "===> Running tests"
for i in ${PYTHON3S}; do
	echo "===> Testing with python$i"
	python$i -m pytest test --ignore=.pc -k 'not test_joined_across and not test_eager_join' --ignore-glob="*mypy*" -n auto
done
