File: 0002-python3

package info (click to toggle)
python-redis 4.3.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,172 kB
  • sloc: python: 38,266; sh: 337; makefile: 128
file content (10 lines) | stat: -rwxr-xr-x 300 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 -k 'not redismod and onlynoncluster and not module and not busy_loading_disconnects_socket and not busy_loading_from_pipeline_immediate_command and not busy_loading_from_pipeline'
done