File: 0002-python3

package info (click to toggle)
python-redis 6.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,432 kB
  • sloc: python: 60,318; sh: 179; makefile: 128
file content (10 lines) | stat: -rwxr-xr-x 502 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/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