#!/bin/sh
#
# Run tests under Python 3

set -eux

for X in $(py3versions --supported)
do
	${X} -m pytest -W always --ignore tests/test_asyncio/test_cluster.py -k 'not redismod and onlynoncluster and not graph and not module and not busy_loading_disconnects_socket and not busy_loading_from_pipeline_immediate_command and not busy_loading_from_pipeline and not get_set_retry_object_for_cluster_client and not test_get_sentinels and not test_get_master_addr_by_name and not test_redis_master_usage'
done
