File: upstream

package info (click to toggle)
python-fakeredis 2.29.0-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,772 kB
  • sloc: python: 19,002; sh: 8; makefile: 5
file content (13 lines) | stat: -rwxr-xr-x 280 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

socat tcp-l:6390,fork,reuseaddr tcp:127.0.0.1:6379 &

for py in $(py3versions -s)
do
   echo "[*] testing on $py:"
   $py -Wd -m pytest -k 'not test_hypothesis and not test_json and not test_no_script_error and not test_mixins' 2>&1
done

killall socat || true