File: python3

package info (click to toggle)
python-bitstring 3.1.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,428 kB
  • sloc: python: 7,249; makefile: 12; sh: 8
file content (12 lines) | stat: -rwxr-xr-x 194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -efu

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

cp -a ./test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $pys; do
	echo "=== $py ==="
	$py -m unittest discover ./test 2>&1
done