#!/bin/sh

PYTHON3S=$(py3versions -vs)

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