File: python3

package info (click to toggle)
pyzmq 27.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,984 kB
  • sloc: python: 15,189; ansic: 285; makefile: 169; sh: 85
file content (13 lines) | stat: -rwxr-xr-x 246 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -efux

pys="$(py3versions -s 2>/dev/null)"

cp -a pytest.ini tests "$AUTOPKGTEST_TMP/"

cd "$AUTOPKGTEST_TMP"

for py in $pys; do
    echo "=== $py ==="
    $py -m pytest -v -k 'not (test_auth or test_log or test_cython)' 2>&1
done