#!/bin/sh

set -e
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
	echo "Testing with $py:"
	$py -m pytest -v -k 'not test_threadpool_limitation_in_child_override' --pyargs joblib
done
