#! /bin/sh

set -e
set -x

for py in $(py3versions -s 2>/dev/null)
do
	cd /usr/lib/python3/dist-packages/pytools/test/
# Disable persistent dictionary tests as they are creating files
# and expect siphash13 not available in Debian
	$py -m pytest -k 'not test_attrs_hashing and not test_class_hashing and not test_dataclass_hashing and not test_datetime_hashing and not test_hash_function and not test_concurrency_processes and not test_concurrency_threads and not test_xdg_cache_home'
done
