File: python3

package info (click to toggle)
python-tornado 6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,032 kB
  • sloc: python: 27,567; javascript: 156; sh: 99; ansic: 58; xml: 49; makefile: 48; sql: 23
file content (15 lines) | stat: -rwxr-xr-x 355 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -efu

export ASYNC_TEST_TIMEOUT=30

PYS=${PYS:-"$(py3versions -r 2>/dev/null)"}

cd "$AUTOPKGTEST_TMP"
# subprocess tests get unexpected output if $HOME/.python_history is not readable
export HOME=$AUTOPKGTEST_TMP

for py in $PYS; do
    echo "=== $py ==="
    $py /usr/lib/python3/dist-packages/tornado/test/runtests.py --verbose 2>&1
done